only escape dbg tags when running in server mode

This commit is contained in:
Mike Macgirvin 2010-08-14 19:48:32 -07:00
parent 2370a3f89b
commit 51f6671466
1 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,10 @@ class dba {
if(! function_exists('printable')) {
function printable($s) {
$s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s);
return(escape_tags(str_replace("\x00",'.',$s)));
$s = str_replace("\x00",'.',$s);
if(x($_SERVER,'SERVER_NAME'))
$s = escape_tags($s);
return $s;
}}
// Procedural functions