Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matt@piwik.org>2013-01-31 00:18:33 +0400
committermattab <matt@piwik.org>2013-01-31 00:18:33 +0400
commit65cc5105a0492889a438a582a3f34f6d2a3259c3 (patch)
treece4c81e6958a70532a9264896a51f9951d8f5e6a /core/Http.php
parent80ae3e2d926fbcdf053b09427c3a37f23a32038f (diff)
Fix Notice: Undefined variable: header in /usr/share/piwik/core/Http.php on line 527
git-svn-id: http://dev.piwik.org/svn/trunk@7821 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Http.php')
-rw-r--r--core/Http.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Http.php b/core/Http.php
index a9cab7db6a..e5bc60e07b 100644
--- a/core/Http.php
+++ b/core/Http.php
@@ -535,6 +535,7 @@ class Piwik_Http
}
else
{
+ $header = '';
// redirects are included in the output html, so we look for the last line that starts w/ HTTP/...
// to split the response
while (substr($response, 0, 5) == "HTTP/")