Changeset 2208628
- Timestamp:
- 12/09/2019 02:30:10 PM (6 years ago)
- Location:
- wp-etracker/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
tracklet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-etracker/trunk/readme.txt
r2166287 r2208628 4 4 Donate link: http://wp-etracker.com 5 5 Requires at least: 4.6 6 Tested up to: 5. 2.37 Stable tag: 1.0. 96 Tested up to: 5.3 7 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 64 64 Initial release 65 65 66 = 1.0. 4 =66 = 1.0.04 = 67 67 Fixed bug with internal search (tracklet) 68 68 69 = 1.0. 5 =69 = 1.0.05 = 70 70 Removed old tracking code and updated parameters 71 71 72 = 1.0. 6 =72 = 1.0.06 = 73 73 Added option to activate/deactivate YouTube event tracking 74 74 Fixed compatibility issue with WP Rocket plugin 75 75 76 = 1.0. 7 =76 = 1.0.07 = 77 77 Enhanced compatibility with PHP 7.2 and 7.3 78 78 Tested compatibility with Wordpress 5.0 and 5.1.1 79 79 80 = 1.0. 8 =80 = 1.0.08 = 81 81 Added WordPress version to etracker API call 82 82 83 = 1.0. 9 =83 = 1.0.09 = 84 84 Fixed internal version information for etracker analytics 85 85 … … 98 98 = 1.0.2 = 99 99 Fixed issue with page and section names 100 101 = 1.0.21 = 102 Fixed security issue -
wp-etracker/trunk/tracklet.php
r2166287 r2208628 426 426 $firstRun = false; 427 427 } 428 $output .= $key . "=" . rawurlencode($val); 428 //KM: maybe this would work, too, but seems unnecessary: 429 //$filtered_val = filter_input(INPUT_GET, $key); 430 $output .= rawurlencode($key) . "=" . rawurlencode($val); 429 431 } 430 432 }
Note: See TracChangeset
for help on using the changeset viewer.