]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix linitin issues in PHP
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 25 Jul 2021 13:13:49 +0000 (15:13 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 28 Jul 2021 09:31:47 +0000 (11:31 +0200)
lib-php/tokenizer/legacy_icu_tokenizer.php

index 7a900e5a44f62c1abb21339465d5277e3fa34afc..ef79769c76bb2a7063cbb86dff67b3d09357e9f3 100644 (file)
@@ -19,7 +19,7 @@ class Tokenizer
 
     public function checkStatus()
     {
-        $sSQL = "SELECT word_id FROM word limit 1";
+        $sSQL = 'SELECT word_id FROM word limit 1';
         $iWordID = $this->oDB->getOne($sSQL);
         if ($iWordID === false) {
             throw new Exception('Query failed', 703);