From: Mark A. Hershberger Date: Thu, 7 Jul 2011 20:58:04 +0000 (+0000) Subject: Bug #29752: add back a space that SPQRobin missed. X-Git-Tag: 1.31.0-rc.0~29000 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=d336a8c161b716b329309243b1043ecb1a471841;p=lhc%2Fweb%2Fwiklou.git Bug #29752: add back a space that SPQRobin missed. --- 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; }