Move $_SERVER superglobals to the end of the globals-table.

closes #209.
This commit is contained in:
Markus Staab
2015-06-05 15:39:52 +02:00
parent e836694368
commit 5b2ad56d0d
+1 -1
View File
@@ -160,12 +160,12 @@ class PrettyPageHandler extends Handler
"handlers" => $this->getRun()->getHandlers(),
"tables" => array(
"Server/Request Data" => $_SERVER,
"GET Data" => $_GET,
"POST Data" => $_POST,
"Files" => $_FILES,
"Cookies" => $_COOKIE,
"Session" => isset($_SESSION) ? $_SESSION : array(),
"Server/Request Data" => $_SERVER,
"Environment Variables" => $_ENV,
),
);