Merge pull request #290 from staabm/sglobals

Move $_SERVER superglobals to the end of the globals-table.
This commit is contained in:
Denis Sokolov
2015-06-05 17:32:48 +03:00
+1 -1
View File
@@ -161,12 +161,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,
),
);