From: Chad Horohoe Date: Fri, 4 Feb 2011 20:54:43 +0000 (+0000) Subject: lowercase a few more t/f X-Git-Tag: 1.31.0-rc.0~32200 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=198574cb453ee0689a75dba676de310b74d3f046;p=lhc%2Fweb%2Fwiklou.git lowercase a few more t/f --- diff --git a/includes/installer/PostgresInstaller.php b/includes/installer/PostgresInstaller.php index 5662d0795e..98b4ebd945 100644 --- a/includes/installer/PostgresInstaller.php +++ b/includes/installer/PostgresInstaller.php @@ -175,7 +175,7 @@ class PostgresInstaller extends DatabaseInstaller { if ( !$create && $this->getVar( 'wgDBuser' ) != $this->getVar( '_InstallUser' ) ) { // Test the web account try { - $this->useAdmin = FALSE; + $this->useAdmin = false; return $this->openConnection(); } catch ( DBConnectionError $e ) { return Status::newFatal( 'config-connection-error', $e->getMessage() ); @@ -204,7 +204,7 @@ class PostgresInstaller extends DatabaseInstaller { } function setupDatabase() { - $this->useAdmin = TRUE; + $this->useAdmin = true; $status = $this->getConnection(); if ( !$status->isOK() ) { return $status;