]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix variable reference
authorEric Stadtherr <estadtherr@caci.com>
Sun, 22 Jul 2018 03:59:03 +0000 (21:59 -0600)
committerEric Stadtherr <estadtherr@caci.com>
Sun, 22 Jul 2018 03:59:03 +0000 (21:59 -0600)
utils/setup.php

index 1b4a345f0c28748c276a64ca28f2b80a1a4ed382..4d2ea8029aa7bba5cf17625a2f2a03ddd4e09573 100755 (executable)
@@ -950,6 +950,7 @@ function checkModulePresence()
 {
     // Try accessing the C module, so we know early if something is wrong
     // and can simply error out.
+    global $sModulePath;
     $sSQL = "CREATE FUNCTION nominatim_test_import_func(text) RETURNS text AS '";
     $sSQL .= $sModulePath."/nominatim.so', 'transliteration' LANGUAGE c IMMUTABLE STRICT";
     $sSQL .= ';DROP FUNCTION nominatim_test_import_func(text);';