From 8fc2f9551bb056f2dcdd8f85f168ca956015e266 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sun, 30 Sep 2012 11:46:00 +0200 Subject: [PATCH] delete more hardcoded rules for special phrases both cases are now sufficiently covered by settings/phrase_settings.php --- utils/specialphrases.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/utils/specialphrases.php b/utils/specialphrases.php index 4381bdfa..f1a0d0d0 100755 --- a/utils/specialphrases.php +++ b/utils/specialphrases.php @@ -86,11 +86,6 @@ foreach($aPairs as $aPair) { - if ($aPair[0] == 'yes') continue; - if ($aPair[1] == 'yes') continue; - if ($aPair[0] == 'highway') continue; - if ($aPair[1] == 'highway') continue; - echo "create table place_classtype_".pg_escape_string($aPair[0])."_".pg_escape_string($aPair[1])." as "; echo "select place_id as place_id,st_centroid(geometry) as centroid from placex where "; echo "class = '".pg_escape_string($aPair[0])."' and type = '".pg_escape_string($aPair[1])."';\n"; -- 2.45.1