Changeset 2828362
- Timestamp:
- 12/04/2022 11:53:02 AM (3 years ago)
- Location:
- ezcount/trunk
- Files:
-
- 3 edited
-
EZcount.php (modified) (2 diffs)
-
EZcount_helpers.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ezcount/trunk/EZcount.php
r2667109 r2828362 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; // Exit if accessed directly 4 } 2 5 /** 3 6 * Plugin Name: EZcount 4 * Plugin URI: 7 * Plugin URI: https://www.ezcount.co.il 5 8 * Description: invoicing, clearing and paypal integration plugin. 6 * Version: 1.11. 49 * Version: 1.11.5 7 10 * Author: EZcount 8 * Author URI: 11 * Author URI: https://www.ezcount.co.il 9 12 * Requires at least: 4.4 10 * Tested up to: 5.8.213 * Tested up to: 6.1.1 11 14 * Text Domain: EZcount 12 15 * … … 223 226 ); 224 227 225 $runIntegrationTest = @$_GET['page'] == 'wc-settings' && @$_GET['tab'] == 'checkout' && @$_GET['section'] == "ezcount"; 228 $isInWooSetting = !empty($_GET['page']) && !empty($_GET['tab']) && !empty($_GET['section']); 229 $runIntegrationTest = $isInWooSetting && $_GET['page'] == 'wc-settings' && $_GET['tab'] == 'checkout' && $_GET['section'] == "ezcount"; 226 230 if ( $runIntegrationTest ) { 227 231 $integrationStatus = EZcount_helpers::testIntegration( $this->environment, $this->api_key, $defaultEmail ); -
ezcount/trunk/EZcount_helpers.php
r2635619 r2828362 1 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; // Exit if accessed directly 4 } 2 5 3 6 class EZcount_helpers { -
ezcount/trunk/readme.txt
r2667109 r2828362 3 3 Contributors: EZcount 4 4 Tags : Invoicing and clearing for Woocommerce, by EasyCount. 5 Tested up to: 5.8.26 Version : 1.11. 45 Tested up to: 6.1.1 6 Version : 1.11.5 7 7 Stable tag: trunk 8 8 Requires PHP: 5.4 … … 56 56 1.10.5 - add $_COOKIE to the debug data 57 57 1.11.2 - move cookies to url encrypted session 58 1.11.5 - fix undefined $_GET index warning in the admin panel 58 59 == Upgrade notice == 59 60 nothing speacial about upgrading
Note: See TracChangeset
for help on using the changeset viewer.