Skip to content
Snippets Groups Projects
Commit 28fb55ff authored by andi's avatar andi
Browse files

removed sensitive data from debug (fixes #108)

darcs-hash:20050201194558-9977f-86d3d74528e976ffada144bfda82a763a9e5005f.gz
parent 760668cd
No related branches found
No related tags found
No related merge requests found
......@@ -1078,6 +1078,10 @@ function html_signature(){
function html_debug(){
global $conf;
global $lang;
//remove sensitive data
$cnf = $conf;
$cnf['auth']='***';
$cnf['notify']='***';
print '<html><body>';
......@@ -1090,7 +1094,7 @@ function html_debug(){
print '</pre>';
print '<b>$conf:</b><pre>';
print_r($conf);
print_r($cnf);
print '</pre>';
print '<b>abs baseURL:</b><pre>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment