1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 16:46:50 +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())
{
$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)
{

View File

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