Like someone else mentioned, I'm getting security warnings on all pages of my e-commerce site. I didn't have problems with the old version. Just wanted to check and see if we have a fix coming for this issue? Thanks much.
I've updated the PHP code to not use it if it's on an HTTPS site. You can update your code from the setup, or you can change this line: if ($ads_temp[6] && ($output || preg_match('#(' . str_replace ('-', '|', $ads_temp[7]) . ')#si', $_SERVER['HTTP_USER_AGENT']))) $ad_network .= ' <img src="http://ads.digitalpoint.com/t-' . implode ('-', $ad_ids) . '.gif" width="1" height="1" />'; PHP: to this: if ($ads_temp[6] && ($output || preg_match('#(' . str_replace ('-', '|', $ads_temp[7]) . ')#si', $_SERVER['HTTP_USER_AGENT'])) && !$_SERVER['HTTPS']) $ad_network .= ' <img src="http://ads.digitalpoint.com/t-' . implode ('-', $ad_ids) . '.gif" width="1" height="1" />'; PHP: