From: Chad Horohoe Date: Thu, 6 Jan 2011 22:45:34 +0000 (+0000) Subject: Typofix key names X-Git-Tag: 1.31.0-rc.0~32734 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=d657893eb986c7591ce386f9ed44d70f6d5fcf22;p=lhc%2Fweb%2Fwiklou.git Typofix key names --- 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();