From 09d9e575e959c974033998f6b6e4f94912773c72 Mon Sep 17 00:00:00 2001 From: mattpiwik Date: Wed, 5 Sep 2007 20:51:05 +0000 Subject: The piwik script now returns a transparent gif 1*1 pixel; now testing the piwik software on giik.net/blog... :) git-svn-id: http://dev.piwik.org/svn/trunk@60 59fd770c-687e-43c8-a1e3-f5a4ff64c105 --- modules/LogStats.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'modules/LogStats.php') diff --git a/modules/LogStats.php b/modules/LogStats.php index 7b0e80c837..b96880dd94 100644 --- a/modules/LogStats.php +++ b/modules/LogStats.php @@ -175,6 +175,9 @@ class Piwik_LogStats case self::STATE_NOTHING_TO_NOTICE: default: printDebug("Nothing to notice => default behaviour"); + $trans_gif_64 = "R0lGODlhAQABAJEAAAAAAP///////wAAACH5BAEAAAIALAAAAAABAAEAAAICVAEAOw=="; + header("Content-type: image/gif"); + print(base64_decode($trans_gif_64)); break; } printDebug("End of the page."); -- cgit v1.2.3