Jaime Bozza - 2004-07-26

Logged In: YES
user_id=356112

Testing using base64_encode works fine on both IE and
Mozilla.

Replacing:
$clickthru = urlencode (serialize ($clickthru));
with:
$clickthru = base64_encode (serialize ($clickthru));

in retrieve_creative(), then replacing:
$clickthru = unserialize (stripslashes ($ct));
with:
$clickthru = unserialize (base64_decode (stripslashes ($ct)));

seems to do the trick! Tested with Mozilla 1.7 and IE
6.whatever in WinXP.