From 24bb8304f266bf990ad168890bcad4111b75608e Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Mon, 26 Jul 2010 06:57:58 +0000 Subject: [PATCH] Followup r69921 PHP Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting T_PAAMAYIM_NEKUDOTAYIM in includes/db/DatabasePostgres.php on line 1157 --- includes/db/DatabasePostgres.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/DatabasePostgres.php b/includes/db/DatabasePostgres.php index 62391e94d8..1e33424802 100644 --- a/includes/db/DatabasePostgres.php +++ b/includes/db/DatabasePostgres.php @@ -1154,7 +1154,7 @@ class DatabasePostgres extends DatabaseBase { * @return string Version information from the database */ function getServerVersion() { - if ( ! isset( this->numeric_version ) ) { + if ( !isset( $this->numeric_version ) ) { $versionInfo = pg_version( $this->mConn ); if ( version_compare( $versionInfo['client'], '7.4.0', 'lt' ) ) { // Old client, abort install -- 2.20.1