diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/html.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/inc/html.php b/inc/html.php index 37fad428a..072d36415 100644 --- a/inc/html.php +++ b/inc/html.php @@ -1075,6 +1075,7 @@ function html_signature(){ */ function html_debug(){ global $conf; + global $lang; print '<html><body>'; @@ -1106,6 +1107,10 @@ function html_debug(){ print setlocale(LC_ALL,0); print '</pre>'; + print '<b>encoding:</b><pre>'; + print $lang['encoding']; + print '</pre>'; + print '<b>Environment:</b><pre>'; print_r($_ENV); print '</pre>'; |