Set numeric_version more globally so things like search don't break.

This commit is contained in:
Greg Sabino Mullane 2008-11-22 06:49:16 +00:00
parent 707b029eaa
commit 6ac82136a6

View file

@ -205,7 +205,7 @@ class DatabasePostgres extends Database {
global $wgDBname, $wgDBuser, $wgDBpassword, $wgDBsuperuser, $wgDBmwschema, $wgDBts2schema;
print "<li>Checking the version of Postgres...";
$version = $this->numeric_version = $this->getServerVersion();
$version = $this->getServerVersion();
$PGMINVER = '8.1';
if ($version < $PGMINVER) {
print "<b>FAILED</b>. Required version is $PGMINVER. You have $version</li>\n";
@ -1056,7 +1056,8 @@ class DatabasePostgres extends Database {
*/
function getServerVersion() {
$versionInfo = pg_version( $this->mConn );
return $versionInfo['server'];
$this->numeric_version = $versionInfo['server'];
return $this->numeric_version;
}
/**