Wrong brackets.

This commit is contained in:
green-ponies (jgen) 2011-09-04 14:24:14 -04:00
parent c2ef8736b8
commit 1c8ba8dc26

View File

@ -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.";
}