Fix rename of exception from when I moved it
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 9 Jun 2010 19:07:11 +0000 (19:07 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 9 Jun 2010 19:07:11 +0000 (19:07 +0000)
includes/installer/Installer.php

index 376528f..cb4b697 100644 (file)
@@ -788,7 +788,7 @@ abstract class Installer {
                try {
                        $out = $wgParser->parse( $text, $this->parserTitle, $this->parserOptions, $lineStart );
                        $html = $out->getText();
-               } catch ( InstallerDBAccessError $e ) {
+               } catch ( DBAccessError $e ) {
                        $html = '<!--DB access attempted during parse-->  ' . htmlspecialchars( $text );
                        if ( !empty( $this->debug ) ) {
                                $html .= "<!--\n" . $e->getTraceAsString() . "\n-->";