]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/TokenList.php
replace database abstraction DB with PDO
[nominatim.git] / lib / TokenList.php
index a5b3c2d28710214ec21b7b0a2c2b0c248ca84746..2d0c7c16d0ae74e2931ba159ba9ffe3818d59085 100644 (file)
@@ -85,7 +85,7 @@ class TokenList
         $sSQL = 'SELECT word_id, word_token, word, class, type, country_code,';
         $sSQL .= ' operator, coalesce(search_name_count, 0) as count';
         $sSQL .= ' FROM word WHERE word_token in (';
         $sSQL = 'SELECT word_id, word_token, word, class, type, country_code,';
         $sSQL .= ' operator, coalesce(search_name_count, 0) as count';
         $sSQL .= ' FROM word WHERE word_token in (';
-        $sSQL .= join(',', array_map('getDBQuoted', $aTokens)).')';
+        $sSQL .= join(',', $oDB->getDBQuotedList($aTokens)).')';
 
         Debug::printSQL($sSQL);
 
 
         Debug::printSQL($sSQL);