From: Chad Horohoe Date: Wed, 12 Jan 2011 21:28:59 +0000 (+0000) Subject: Fix undefined variable from r79828 X-Git-Tag: 1.31.0-rc.0~32586 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=19bde211825b28596b3daf725344eddb5e1ffb48;p=lhc%2Fweb%2Fwiklou.git Fix undefined variable from r79828 --- diff --git a/includes/installer/PostgresInstaller.php b/includes/installer/PostgresInstaller.php index afed6b8101..2d1d13ba3d 100644 --- a/includes/installer/PostgresInstaller.php +++ b/includes/installer/PostgresInstaller.php @@ -280,7 +280,7 @@ class PostgresInstaller extends DatabaseInstaller { } if( version_compare( $this->db->getServerVersion(), $this->ts2MaxVersion, '<' ) ) { - if ( !$this->db->tableExists( 'pg_ts_cfg', $wgDBts2schema ) ) { + if ( !$this->db->tableExists( 'pg_ts_cfg', $this->getVar( 'wgDBts2schema' ) ) ) { return Status::newFatal( 'config-install-pg-ts2-failed', $this->getVar( 'wgDBname' ),