X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5adc3167d833bc2fb73d4a19f3c68b1e7a42ee3e..3fb739de9275680d4f482d363f22c535442f0017:/lib-php/DebugHtml.php?ds=sidebyside diff --git a/lib-php/DebugHtml.php b/lib-php/DebugHtml.php index 5d12be67..7b0cba2d 100644 --- a/lib-php/DebugHtml.php +++ b/lib-php/DebugHtml.php @@ -135,7 +135,7 @@ class Debug public static function printSQL($sSQL) { - echo '

'.date('c').' '.$sSQL.'

'."\n"; + echo '

'.date('c').' '.htmlspecialchars($sSQL, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401).'

'."\n"; } private static function outputVar($mVar, $sPreNL) @@ -178,11 +178,12 @@ class Debug } if (is_string($mVar)) { - echo "'$mVar'"; - return strlen($mVar) + 2; + $sOut = "'$mVar'"; + } else { + $sOut = (string)$mVar; } - echo (string)$mVar; - return strlen((string)$mVar); + echo htmlspecialchars($sOut, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401); + return strlen($sOut); } }