* (bug 10560) Adding a space between category letter heading and "continues"
authorRaimond Spekking <raymond@users.mediawiki.org>
Fri, 13 Jul 2007 08:41:25 +0000 (08:41 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Fri, 13 Jul 2007 08:41:25 +0000 (08:41 +0000)
Some localizations files have a space, some not and it looks ugly without.
Removing space from localization files will be done shortly togehter with other housekeeping stuff.

RELEASE-NOTES
includes/CategoryPage.php

index da36047..ceb49b2 100644 (file)
@@ -286,7 +286,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   Patch by Alex Smotrov.
 * Don't show non-functional toolbar buttons on Opera 7 anymore
 * (bug 9151) Fix relative subpage links with section fragments
-
+* (bug 10560) Adding a space between category letter heading and "continues"
 
 == API changes since 1.10 ==
 
index c9f11e9..426fbb1 100644 (file)
@@ -352,7 +352,7 @@ class CategoryViewer {
                                        }
                                        $cont_msg = "";
                                        if ( $articles_start_char[$index] == $prev_start_char )
-                                               $cont_msg = wfMsgHtml('listingcontinuesabbrev');
+                                               $cont_msg = ' ' . wfMsgHtml( 'listingcontinuesabbrev' );
                                        $r .= "<h3>" . htmlspecialchars( $articles_start_char[$index] ) . "$cont_msg</h3>\n<ul>";
                                        $prev_start_char = $articles_start_char[$index];
                                }