Update PrettyPageHandler.php

This commit is contained in:
Markus Staab
2017-03-06 09:27:50 +01:00
committed by GitHub
parent e319f72b90
commit 7bb5d5b542
+1 -1
View File
@@ -238,7 +238,7 @@ class PrettyPageHandler extends Handler
"POST Data" => $this->masked($_POST, '_POST'),
"Files" => isset($_FILES) ? $this->masked($_FILES, '_FILES') : [],
"Cookies" => $this->masked($_COOKIE, '_COOKIE'),
"Session" => isset($_SESSION) ? $this->masked('_SESSION') : [],
"Session" => isset($_SESSION) ? $this->masked($_SESSION, '_SESSION') : [],
"Server/Request Data" => $this->masked($_SERVER, '_SERVER'),
"Environment Variables" => $this->masked($_ENV, '_ENV'),
],