Bug #29752: add back a space that SPQRobin missed.
authorMark A. Hershberger <mah@users.mediawiki.org>
Thu, 7 Jul 2011 20:58:04 +0000 (20:58 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Thu, 7 Jul 2011 20:58:04 +0000 (20:58 +0000)
includes/GlobalFunctions.php

index 166af9d..bba1ac0 100644 (file)
@@ -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;
 }