diff options
-rw-r--r-- | inc/html.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/html.php b/inc/html.php index 8ecdad749..dc50b1a45 100644 --- a/inc/html.php +++ b/inc/html.php @@ -1103,6 +1103,10 @@ function html_debug(){ print $lang['encoding']; print '</pre>'; + print '<b>$_SESSION:</b><pre>'; + print_r($_SESSION); + print '</pre>'; + print '<b>Environment:</b><pre>'; print_r($_ENV); print '</pre>'; |