From b18405e87f775936f0a7d8916a2eaf5808d5e62e Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 9 Jun 2010 19:07:11 +0000 Subject: [PATCH] Fix rename of exception from when I moved it --- includes/installer/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/Installer.php b/includes/installer/Installer.php index 376528f8c2..cb4b6971e5 100644 --- a/includes/installer/Installer.php +++ b/includes/installer/Installer.php @@ -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 = ' ' . htmlspecialchars( $text ); if ( !empty( $this->debug ) ) { $html .= ""; -- 2.20.1