Plugin Directory

Changeset 924933


Ignore:
Timestamp:
06/02/2014 04:20:37 AM (12 years ago)
Author:
kasigi
Message:

removed other encoding function

Location:
attribution-query-string-manager/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • attribution-query-string-manager/trunk/aqsm.php

    r924893 r924933  
    55Description: This plugin will help manage query string variables to ensure that desired variables are always included on certain domains. This plugin was developed to assist with affiliate tracking needs for sites/blogs that link to separate purchase flows.
    66Author: Tor N. Johnson
    7 Version: 0.1.2
     7Version: 0.1.3
    88Author URI: http://profiles.wordpress.org/kasigi
    99License: GPL2
     
    3131
    3232    if (!defined('AQSM_VERSION_NUM')){
    33         define('AQSM_VERSION_NUM', '0.1.2');
     33        define('AQSM_VERSION_NUM', '0.1.0');
    3434    }
    3535    add_option(AQSM_VERSION_KEY, AQSM_VERSION_NUM);
  • attribution-query-string-manager/trunk/includes/aqsm_engine.php

    r923595 r924933  
    264264    // Re-encode the &'s
    265265    //$patient .= "\"";
    266     while($patient != preg_replace("#(&)([^\#].*)#i","&$2",$patient)){
    267         $patient = preg_replace("#(&)([^\#].*)#i","&$2",$patient);
    268     }
     266    //while($patient != preg_replace("#(&)([^\#].*)#i","&$2",$patient)){
     267    //  $patient = preg_replace("#(&)([^\#].*)#i","&$2",$patient);
     268    //}
    269269
    270270    return $patient;
  • attribution-query-string-manager/trunk/readme.txt

    r924893 r924933  
    33Tags: analytics, ads, link, links, post, page, posts
    44Requires at least: 3.5
    5 Tested up to: 3.9.1
     5Tested up to: 3.8.1
    66License: GPLv2 or later
    77
     
    3737== Changelog ==
    3838
    39 = 0.1.2 (2014-05-30)
    40 * Removed url encoding function that replaced & with #038;
    41 
    4239= 0.1.1 (2014-05-04)
    4340* Patch to prevent duplication of inputs when urls managed are substrings of eachother
Note: See TracChangeset for help on using the changeset viewer.