From ec14bd0c8e1fd24ed32b3b31328926a0addd9a35 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Sat, 27 Jul 2013 15:19:52 -0400 Subject: [PATCH] ContentHandler: Fix a typo Change-Id: I3accd0605f62e73d5ea527da7b3c03e4bdda3fc7 --- includes/content/ContentHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/content/ContentHandler.php b/includes/content/ContentHandler.php index dcd33bccdf..2de8408e5f 100644 --- a/includes/content/ContentHandler.php +++ b/includes/content/ContentHandler.php @@ -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 ) ) { -- 2.20.1