Plugin Directory

Changeset 2955021


Ignore:
Timestamp:
08/17/2023 03:33:20 PM (3 years ago)
Author:
wecantrack
Message:

Release 1.4.5

Location:
wecantrack
Files:
27 added
5 edited

Legend:

Unmodified
Added
Removed
  • wecantrack/trunk/WecantrackApp.php

    r2837080 r2955021  
    250250
    251251        if (empty($matches[1])) {
    252             // checked if URL schema is OK
    253             error_log('WeCanTrack Plugin tried to parse a faulty URL: '.$original_url);
    254             return false;
     252            // relative URLs are not faulty but are not affiliate links
     253            if (ltrim($original_url)[0] !== '/') {
     254                error_log('WeCanTrack Plugin tried to parse a faulty URL: '.$original_url);
     255                return false;
     256            }
    255257        }
    256258
  • wecantrack/trunk/readme.txt

    r2845967 r2955021  
    33Tags: affiliate, publisher, analytics, conversion tracking, sale attribution, dashboard, subid, google analytics, link, google ads, facebook, data studio, we can track, wecantrack, tracking tool
    44Requires at least: 4.6
    5 Tested up to: 6.0.3
     5Tested up to: 6.3
    66Requires PHP: 5.6.20
    7 Stable tag: 1.4.4
     7Stable tag: 1.4.5
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    6060
    6161== Changelog ==
     62
     63= 1.4.5 - 17th August 2023 =
     64* Do not log relative URLs as faulty
     65* Wordpress 6.3 support
    6266
    6367= 1.4.4 - 10th January 2023 =
  • wecantrack/trunk/views/settings.php

    r2562891 r2955021  
    2323        <ul style="list-style: inherit; padding-left:20px;">
    2424            <?php if (class_exists('ThirstyAffiliates')) : ?>
    25                 <li><?php echo esc_html__('If you\'re making use of Thirsty Affiliates, please make sure to deactive “Enable Enhanced Javascript Redirect on Frontend” under Link Appearance.', 'wecantrack'); ?></li>
     25                <li><?php echo esc_html__('If you\'re making use of Thirsty Affiliates, please make sure to deactivate “Enable Enhanced Javascript Redirect on Frontend” under Link Appearance.', 'wecantrack'); ?></li>
    2626            <?php endif; ?>
    2727
  • wecantrack/trunk/wecantrack.php

    r2845958 r2955021  
    77Plugin URI: https://wecantrack.com/wordpress
    88Description: Integrate all you affiliate sales in Google Analytics, Google Ads, Facebook, Data Studio and more!
    9 Version: 1.4.4
     9Version: 1.4.5
    1010Author: wecantrack.com
    1111Author URI: https://wecantrack.com
     
    1717if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
    1818
    19 define('WECANTRACK_VERSION', '1.4.4');
     19define('WECANTRACK_VERSION', '1.4.5');
    2020define('WECANTRACK_PLUGIN_NAME', 'wecantrack');
    2121define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME);
  • wecantrack/trunk/wecantrack.pot

    r2845958 r2955021  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WeCanTrack 1.4.4\n"
     5"Project-Id-Version: WeCanTrack 1.4.5\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-01-10T09:29:49+00:00\n"
     12"POT-Creation-Date: 2023-08-17T15:04:56+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    9494
    9595#: views/settings.php:25
    96 msgid "If you're making use of Thirsty Affiliates, please make sure to deactive “Enable Enhanced Javascript Redirect on Frontend” under Link Appearance."
     96msgid "If you're making use of Thirsty Affiliates, please make sure to deactivate “Enable Enhanced Javascript Redirect on Frontend” under Link Appearance."
    9797msgstr ""
    9898
Note: See TracChangeset for help on using the changeset viewer.