From 19bde211825b28596b3daf725344eddb5e1ffb48 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 12 Jan 2011 21:28:59 +0000 Subject: [PATCH] Fix undefined variable from r79828 --- includes/installer/PostgresInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ), -- 2.20.1