1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-15 11:04:18 +02:00

Fix for google and microsoft advertising auto-tags

This commit is contained in:
Cameron
2019-07-23 16:47:57 -07:00
parent 58f72cfb7e
commit 75086e8a71
2 changed files with 4 additions and 2 deletions

View File

@@ -4960,7 +4960,7 @@ class eHelper
*/ */
public static function removeTrackers($get = array()) public static function removeTrackers($get = array())
{ {
$trackers = array('fbclid','utm_source','utm_medium','utm_content','utm_campaign','elan'); $trackers = array('fbclid','utm_source','utm_medium','utm_content','utm_campaign','elan', 'msclkid', 'gclid');
foreach($trackers as $val) foreach($trackers as $val)
{ {

View File

@@ -5482,6 +5482,8 @@ var_dump($select_options);*/
} }
else else
{ {
// https://stackoverflow.com/questions/2965971/how-to-add-images-in-select-list
$false = ($value === '') ? "□" : "✗"; $false = ($value === '') ? "□" : "✗";
} }