Plugin Directory

Changeset 3321766


Ignore:
Timestamp:
07/03/2025 12:15:19 PM (9 months ago)
Author:
wecantrack
Message:

release 2.0.2. - fix warning

Location:
wecantrack
Files:
31 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • wecantrack/trunk/languages/wecantrack.pot

    r3320552 r3321766  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WeCanTrack 2.0.1\n"
     5"Project-Id-Version: WeCanTrack 2.0.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • wecantrack/trunk/readme.txt

    r3320552 r3321766  
    55Tested up to: 6.7.1
    66Requires PHP: 7.4
    7 Stable tag: 2.0.1
     7Stable tag: 2.0.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    5858== Changelog ==
    5959
     60= 2.0.2 - 3rd July 2025 =
     61 * fix Warning: Undefined array key "disable_ssl"
     62
    6063= 2.0.1 - 19th June 2025 =
    6164 * Removed redirect through parameter functionality
  • wecantrack/trunk/views/advanced_settings.php

    r3320552 r3321766  
    77
    88$wecantrack_referrer_cookie_status = get_option('wecantrack_referrer_cookie_status') ? true : false;
    9 $wecantrack_ssl_disabled = (bool) $wecantrack_storage['disable_ssl'] ?? false;
     9$wecantrack_ssl_disabled = (bool) ($wecantrack_storage['disable_ssl'] ?? false);
    1010$wecantrack_can_redirect_through_parameter_status = false;
    1111
  • wecantrack/trunk/wecantrack.php

    r3320552 r3321766  
    44 * Plugin URI:        https://wecantrack.com/wordpress
    55 * Description:       Integrate all your affiliate sales into Google Analytics, Google Ads, Facebook, Data Studio, and more!
    6  * Version:           2.0.1
     6 * Version:           2.0.2
    77 * Author:            WeCanTrack
    88 * Author URI:        https://wecantrack.com
     
    1818if (!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
    1919
    20 define('WECANTRACK_VERSION', '2.0.1');
     20define('WECANTRACK_VERSION', '2.0.2');
    2121define('WECANTRACK_PLUGIN_NAME', 'wecantrack');
    2222define('WECANTRACK_PATH', plugin_dir_path(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.