Plugin Directory

Changeset 2828362


Ignore:
Timestamp:
12/04/2022 11:53:02 AM (3 years ago)
Author:
alonezcount
Message:

# Changelog

## Version 1.11.5

  • fix undefined $_GET index warning in the admin panel
  • improve the readme support up to the latest wordpress version
  • tested with wordpress 6.1.1
Location:
ezcount/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ezcount/trunk/EZcount.php

    r2667109 r2828362  
    11<?php
     2if ( ! defined( 'ABSPATH' ) ) {
     3    exit; // Exit if accessed directly
     4}
    25/**
    36 * Plugin Name: EZcount
    4  * Plugin URI:
     7 * Plugin URI: https://www.ezcount.co.il
    58 * Description: invoicing, clearing and paypal integration plugin.
    6  * Version: 1.11.4
     9 * Version: 1.11.5
    710 * Author: EZcount
    8  * Author URI:
     11 * Author URI: https://www.ezcount.co.il
    912 * Requires at least: 4.4
    10  * Tested up to: 5.8.2
     13 * Tested up to: 6.1.1
    1114 * Text Domain: EZcount
    1215 *
     
    223226            );
    224227
    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";
    226230            if ( $runIntegrationTest ) {
    227231                $integrationStatus        = EZcount_helpers::testIntegration( $this->environment, $this->api_key, $defaultEmail );
  • ezcount/trunk/EZcount_helpers.php

    r2635619 r2828362  
    11<?php
     2if ( ! defined( 'ABSPATH' ) ) {
     3    exit; // Exit if accessed directly
     4}
    25
    36class EZcount_helpers {
  • ezcount/trunk/readme.txt

    r2667109 r2828362  
    33Contributors: EZcount
    44Tags        : Invoicing and clearing for Woocommerce, by EasyCount.
    5 Tested up to: 5.8.2
    6 Version     : 1.11.4
     5Tested up to: 6.1.1
     6Version     : 1.11.5
    77Stable tag: trunk
    88Requires PHP: 5.4
     
    56561.10.5 - add $_COOKIE to the debug data
    57571.11.2 - move cookies to url encrypted session
     581.11.5 - fix undefined $_GET index warning in the admin panel
    5859== Upgrade notice ==
    5960nothing speacial about upgrading
Note: See TracChangeset for help on using the changeset viewer.