From: Sarah Hoffmann Date: Mon, 20 Feb 2023 14:41:04 +0000 (+0100) Subject: properly encode special HTML characters in debug mode X-Git-Tag: v4.1.2~3 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/a1592faf5f7c36e5f0fe47fb6026b92882937ed9?hp=ec533f6a1a36b823a665721a9728f0070b2a674c properly encode special HTML characters in debug mode --- diff --git a/lib-php/DebugHtml.php b/lib-php/DebugHtml.php index 0edc081a..e402654f 100644 --- a/lib-php/DebugHtml.php +++ b/lib-php/DebugHtml.php @@ -135,7 +135,7 @@ class Debug public static function printSQL($sSQL) { - echo '

'.$sSQL.'

'."\n"; + echo '

'.htmlspecialchars($sSQL).'

'."\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); + return strlen($sOut); } }