lowercase a few more t/f
authorChad Horohoe <demon@users.mediawiki.org>
Fri, 4 Feb 2011 20:54:43 +0000 (20:54 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Fri, 4 Feb 2011 20:54:43 +0000 (20:54 +0000)
includes/installer/PostgresInstaller.php

index 5662d07..98b4ebd 100644 (file)
@@ -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;