Index: trunk/phase3/includes/installer/PostgresInstaller.php |
— | — | @@ -175,7 +175,7 @@ |
176 | 176 | if ( !$create && $this->getVar( 'wgDBuser' ) != $this->getVar( '_InstallUser' ) ) { |
177 | 177 | // Test the web account |
178 | 178 | try { |
179 | | - $this->useAdmin = FALSE; |
| 179 | + $this->useAdmin = false; |
180 | 180 | return $this->openConnection(); |
181 | 181 | } catch ( DBConnectionError $e ) { |
182 | 182 | return Status::newFatal( 'config-connection-error', $e->getMessage() ); |
— | — | @@ -204,7 +204,7 @@ |
205 | 205 | } |
206 | 206 | |
207 | 207 | function setupDatabase() { |
208 | | - $this->useAdmin = TRUE; |
| 208 | + $this->useAdmin = true; |
209 | 209 | $status = $this->getConnection(); |
210 | 210 | if ( !$status->isOK() ) { |
211 | 211 | return $status; |