From: Mark A. Hershberger Date: Sat, 27 Jul 2013 19:19:52 +0000 (-0400) Subject: ContentHandler: Fix a typo X-Git-Tag: 1.31.0-rc.0~19098 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=ec14bd0c8e1fd24ed32b3b31328926a0addd9a35;p=lhc%2Fweb%2Fwiklou.git ContentHandler: Fix a typo Change-Id: I3accd0605f62e73d5ea527da7b3c03e4bdda3fc7 --- 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 ) ) {