diff options
Diffstat (limited to 'htetc')
-rw-r--r-- | htetc/global.asa | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/htetc/global.asa b/htetc/global.asa index db37bf156..ce3bc27c8 100644 --- a/htetc/global.asa +++ b/htetc/global.asa @@ -66,7 +66,9 @@ sub Script_OnFlush { $$ref =~ s/<\/BODY>[\s\n]*<\/HTML>[\s\n]*$//i or warn "can't remove"; - $$ref .= '<PRE>'. ("\n"x96). encode_entities(dbh->sprintProfile()). '</PRE>'; + #$$ref .= '<PRE>'. ("\n"x96). encode_entities(dbh->sprintProfile()). '</PRE>'; + # wtf? konqueror... + $$ref .= '<PRE>'. ("\n"x4096). encode_entities(dbh->sprintProfile()). '</PRE>'; $$ref .= '</BODY></HTML>'; |