From d336a8c161b716b329309243b1043ecb1a471841 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Thu, 7 Jul 2011 20:58:04 +0000 Subject: [PATCH] Bug #29752: add back a space that SPQRobin missed. --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 166af9ddeb..bba1ac028f 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -2516,7 +2516,7 @@ function wfSpecialList( $page, $details, $oppositedm = true ) { global $wgLang; $dirmark = ( $oppositedm ? $wgLang->getDirMark( true ) : '' ) . $wgLang->getDirMark(); - $details = $details ? $dirmark . "($details)" : ''; + $details = $details ? ' ' . $dirmark . "($details)" : ''; return $page . $details; } -- 2.20.1