From 1ee72f0a34c29b8df47c9ef2d7c87e22518eac64 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 8 Nov 2008 02:21:13 +0000 Subject: [PATCH] Code space tweaks --- includes/Linker.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/includes/Linker.php b/includes/Linker.php index a861bc5a79..c48ed2d8af 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -227,11 +227,8 @@ class Linker { } $ret = null; - if( wfRunHooks( 'LinkEnd', array( $this, $target, $options, &$text, - &$attribs, &$ret ) ) ) { - $ret = Xml::openElement( 'a', $attribs ) - . $text - . Xml::closeElement( 'a' ); + if( wfRunHooks( 'LinkEnd', array( $this, $target, $options, &$text, &$attribs, &$ret ) ) ) { + $ret = Xml::openElement( 'a', $attribs ) . $text . Xml::closeElement( 'a' ); } wfProfileOut( __METHOD__ ); -- 2.20.1