mirror of
https://github.com/filp/whoops.git
synced 2026-09-12 02:36:20 +00:00
Move $_SERVER superglobals to the end of the globals-table.
closes #209.
This commit is contained in:
@@ -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,
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user