X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fparser%2FCoreTagHooks.php;h=cbc060a926ac2137c3c1544fe7d4f2c4e6f03104;hb=a90f1a2d790dc00fe9bf50ed978bd8365f9d1431;hp=650518395896e3f59b244a02b35475af1c50fb62;hpb=d4b046a8934d1206e5f6eb6b3d1ba206db814a46;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/CoreTagHooks.php b/includes/parser/CoreTagHooks.php index 6505183958..cbc060a926 100644 --- a/includes/parser/CoreTagHooks.php +++ b/includes/parser/CoreTagHooks.php @@ -77,7 +77,7 @@ class CoreTagHooks { */ static function html( $content, $attributes, $parser ) { global $wgRawHtml; - if( $wgRawHtml ) { + if ( $wgRawHtml ) { return array( $content, 'markerType' => 'nowiki' ); } else { throw new MWException( ' extension tag encountered unexpectedly' ); @@ -107,7 +107,7 @@ class CoreTagHooks { * Renders a thumbnail list of the given images, with optional captions. * Full syntax documented on the wiki: * - * http://www.mediawiki.org/wiki/Help:Images#Gallery_syntax + * https://www.mediawiki.org/wiki/Help:Images#Gallery_syntax * * @todo break Parser::renderImageGallery out here too. *