X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/e1c88352ab8124fd5a2c937f6626c7a347f7cba4..8f09b9378f29f7180fa1d31bc7392b4945f23d29:/utils/setup.php diff --git a/utils/setup.php b/utils/setup.php index c07bccef..42a132bf 100755 --- a/utils/setup.php +++ b/utils/setup.php @@ -112,7 +112,7 @@ $oDB =& getDB(); $sVersionString = $oDB->getOne('select version()'); - preg_match('#PostgreSQL ([0-9]+)[.]([0-9]+)[.]([0-9]+) #', $sVersionString, $aMatches); + preg_match('#PostgreSQL ([0-9]+)[.]([0-9]+)[^0-9]#', $sVersionString, $aMatches); if (CONST_Postgresql_Version != $aMatches[1].'.'.$aMatches[2]) { echo "ERROR: PostgreSQL version is not correct. Expected ".CONST_Postgresql_Version." found ".$aMatches[1].'.'.$aMatches[2]."\n";