From d657893eb986c7591ce386f9ed44d70f6d5fcf22 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 6 Jan 2011 22:45:34 +0000 Subject: [PATCH] Typofix key names --- 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 7f5612b795..48f84d6528 100644 --- a/includes/installer/PostgresInstaller.php +++ b/includes/installer/PostgresInstaller.php @@ -180,10 +180,10 @@ class PostgresInstaller extends DatabaseInstaller { if ( $rows >= 1 ) { $result = $this->db->query( 'CREATE LANGUAGE plpgsql' ); if ( !$result ) { - return Status::newFatal( 'pg-no-plpgsql', $wgDBname ); + return Status::newFatal( 'config-pg-no-plpgsql', $wgDBname ); } } else { - return Status::newFatal( 'pg-no-plpgsql', $wgDBname ); + return Status::newFatal( 'config-pg-no-plpgsql', $wgDBname ); } } return Status::newGood(); -- 2.20.1