From 2390c5f8f03ccbf81675c0f65439427b405223ee Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 27 Aug 2007 00:37:24 +0000 Subject: [PATCH] *Add a space if we already have subtitle content --- includes/Article.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/Article.php b/includes/Article.php index 41d988d73f..4ae280a814 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -922,6 +922,8 @@ class Article { } else { $msg = wfMsg( 'protected-subtitle-each', $editGroups, $moveGroups ); } + if( $wgOut->getSubtitle() ) + $msg = " $msg"; $wgOut->setSubtitle( $wgOut->getSubtitle() . $msg ); } -- 2.20.1