From: Aaron Schulz Date: Fri, 19 Sep 2008 13:46:26 +0000 (+0000) Subject: Tweak edit comment space X-Git-Tag: 1.31.0-rc.0~45218 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=4b581fe7274ed4aba7761523e59ff9c32d21e2a6;p=lhc%2Fweb%2Fwiklou.git Tweak edit comment space --- diff --git a/includes/Article.php b/includes/Article.php index 7d4b816573..1b6acc22df 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -1873,11 +1873,12 @@ class Article { if ($restrictions != '') { $protect_description .= "[$action=$restrictions] ("; if( $encodedExpiry[$action] != 'infinity' ) { - $protect_description .= wfMsgForContent( 'protect-expiring', $wgContLang->timeanddate( $expiry[$action], false, false ) ); + $protect_description .= wfMsgForContent( 'protect-expiring', + $wgContLang->timeanddate( $expiry[$action], false, false ) ); } else { $protect_description .= wfMsgForContent( 'protect-expiry-indefinite' ); } - $protect_description .= ') '; + $protect_description .= ')'; } }