From 198574cb453ee0689a75dba676de310b74d3f046 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Fri, 4 Feb 2011 20:54:43 +0000 Subject: [PATCH] lowercase a few more t/f --- includes/installer/PostgresInstaller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.20.1