ContentHandler: Fix a typo
authorMark A. Hershberger <mah@everybody.org>
Sat, 27 Jul 2013 19:19:52 +0000 (15:19 -0400)
committerKrinkle <krinklemail@gmail.com>
Sat, 27 Jul 2013 19:23:27 +0000 (19:23 +0000)
Change-Id: I3accd0605f62e73d5ea527da7b3c03e4bdda3fc7

includes/content/ContentHandler.php

index dcd33bc..2de8408 100644 (file)
@@ -319,7 +319,7 @@ abstract class ContentHandler {
                        wfRunHooks( 'ContentHandlerForModelID', array( $modelId, &$handler ) );
 
                        if ( $handler === null ) {
-                               throw new MWException( "No handler for model '$modelId'' registered in \$wgContentHandlers" );
+                               throw new MWException( "No handler for model '$modelId' registered in \$wgContentHandlers" );
                        }
 
                        if ( !( $handler instanceof ContentHandler ) ) {