From 1c8ba8dc26511af7982ed516f28aa4fff04ce9e8 Mon Sep 17 00:00:00 2001 From: "green-ponies (jgen)" Date: Sun, 4 Sep 2011 14:24:14 -0400 Subject: [PATCH] Wrong brackets. --- core/page.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/page.class.php b/core/page.class.php index c2af3868..d3879853 100644 --- a/core/page.class.php +++ b/core/page.class.php @@ -171,7 +171,7 @@ class Page { $this->add_http_header("X-Powered-By: SCore-".SCORE_VERSION, 2); if (!headers_sent()) { - foreach($this->http_headers as $head)( header($head); ) + foreach($this->http_headers as $head){ header($head); } } else { print "Error: Headers have already been sent to the client."; }