mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-26 06:22:13 +03:00
special phrases: sometimes quotes are not escaped
This commit is contained in:
parent
39787f7d62
commit
bd312fa747
@ -39,7 +39,7 @@ if ($aCMDResult['wiki-import']) {
|
|||||||
$sType = trim($aMatch[3]);
|
$sType = trim($aMatch[3]);
|
||||||
// hack around a bug where building=yes was imported with
|
// hack around a bug where building=yes was imported with
|
||||||
// quotes into the wiki
|
// quotes into the wiki
|
||||||
$sType = preg_replace('/"/', '', $sType);
|
$sType = preg_replace('/("|")/', '', $sType);
|
||||||
// sanity check, in case somebody added garbage in the wiki
|
// sanity check, in case somebody added garbage in the wiki
|
||||||
if (preg_match('/^\\w+$/', $sClass) < 1
|
if (preg_match('/^\\w+$/', $sClass) < 1
|
||||||
|| preg_match('/^\\w+$/', $sType) < 1
|
|| preg_match('/^\\w+$/', $sType) < 1
|
||||||
|
Loading…
Reference in New Issue
Block a user