Typofix key names
authorChad Horohoe <demon@users.mediawiki.org>
Thu, 6 Jan 2011 22:45:34 +0000 (22:45 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Thu, 6 Jan 2011 22:45:34 +0000 (22:45 +0000)
includes/installer/PostgresInstaller.php

index 7f5612b..48f84d6 100644 (file)
@@ -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();