]> git.openstreetmap.org Git - nominatim.git/commitdiff
special phrases: sometimes quotes are not escaped
authormarc tobias <mtmail@gmx.net>
Wed, 18 Sep 2019 22:20:30 +0000 (00:20 +0200)
committermarc tobias <mtmail@gmx.net>
Wed, 18 Sep 2019 22:20:30 +0000 (00:20 +0200)
utils/specialphrases.php

index cb237be6d74cd7478e1842c37bdc327ecfe50997..c15b857897919fa272b31729bc526813fd6960cd 100644 (file)
@@ -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('/&quot;/', '', $sType);
+                $sType = preg_replace('/(&quot;|")/', '', $sType);
                 // sanity check, in case somebody added garbage in the wiki
                 if (preg_match('/^\\w+$/', $sClass) < 1
                     || preg_match('/^\\w+$/', $sType) < 1