From: marc tobias Date: Wed, 18 Sep 2019 22:20:30 +0000 (+0200) Subject: special phrases: sometimes quotes are not escaped X-Git-Tag: v3.4.0~2^2~1 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/bd312fa747321c2e933d192531ceaa7c1fb82e06 special phrases: sometimes quotes are not escaped --- diff --git a/utils/specialphrases.php b/utils/specialphrases.php index cb237be6..c15b8578 100644 --- a/utils/specialphrases.php +++ b/utils/specialphrases.php @@ -39,7 +39,7 @@ if ($aCMDResult['wiki-import']) { $sType = trim($aMatch[3]); // hack around a bug where building=yes was imported with // quotes into the wiki - $sType = preg_replace('/"/', '', $sType); + $sType = preg_replace('/("|")/', '', $sType); // sanity check, in case somebody added garbage in the wiki if (preg_match('/^\\w+$/', $sClass) < 1 || preg_match('/^\\w+$/', $sType) < 1