From 4b581fe7274ed4aba7761523e59ff9c32d21e2a6 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 19 Sep 2008 13:46:26 +0000 Subject: [PATCH] Tweak edit comment space --- includes/Article.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 .= ')'; } } -- 2.20.1