]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #1524 from MatthiasLohr/bugfix/uninitialized-string-offset
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 15 Oct 2019 07:51:20 +0000 (09:51 +0200)
committerGitHub <noreply@github.com>
Tue, 15 Oct 2019 07:51:20 +0000 (09:51 +0200)
Fix for #1523: Fix PHP warning

website/search.php

index 26c10122924dc9329ea288d06a40687d75a33dfc..557056566c1065f30146c6c7b448af88fb90efaa 100644 (file)
@@ -50,6 +50,7 @@ $oGeocode->setQueryFromParams($oParams);
 
 if (!$oGeocode->getQueryString()
     && isset($_SERVER['PATH_INFO'])
+    && strlen($_SERVER['PATH_INFO']) > 0
     && $_SERVER['PATH_INFO'][0] == '/'
 ) {
     $sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1);