diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-02-11 19:02:40 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-02-11 19:02:40 +0100 |
commit | 5298a619f2836d718204a61624c6388923c51a29 (patch) | |
tree | 0fa473f8d9eb1e201429ffd5df0de31cf005d3fd /inc/html.php | |
parent | 8a831f2bba632ebf9e24d0f2f407c5b42cebffe5 (diff) | |
download | rpg-5298a619f2836d718204a61624c6388923c51a29.tar.gz rpg-5298a619f2836d718204a61624c6388923c51a29.tar.bz2 |
updated auth_punbb
darcs-hash:20060211180240-7ad00-c7c589aa6e5e67f2d7ad54f7e41837f116a91c9c.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/inc/html.php b/inc/html.php index 6f99947f9..0e5454d4e 100644 --- a/inc/html.php +++ b/inc/html.php @@ -1063,6 +1063,7 @@ function html_minoredit(){ function html_debug(){ global $conf; global $lang; + global $auth; //remove sensitive data $cnf = $conf; $cnf['auth']='***'; @@ -1107,6 +1108,12 @@ function html_debug(){ print $lang['encoding']; print '</pre>'; + if($auth){ + print '<b>Auth backend capabilities:</b><pre>'; + print_r($auth->cando); + print '</pre>'; + } + print '<b>$_SESSION:</b><pre>'; print_r($_SESSION); print '</pre>'; |