(bug 5565) Add a class attribute to the table on Special:Allpages
authorRob Church <robchurch@users.mediawiki.org>
Sat, 29 Apr 2006 22:13:41 +0000 (22:13 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sat, 29 Apr 2006 22:13:41 +0000 (22:13 +0000)
RELEASE-NOTES
includes/SpecialAllpages.php

index daac35b..1d41c07 100644 (file)
@@ -146,6 +146,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   recent changes table; add reporting and silent modes
 * Cleaned up formatNum usage in langfiles
 * (bug 5716) Warn when a user tries to upload a file which was previously deleted
+* (bug 5565) Add a class attribute to the table on Special:Allpages
 
 == Compatibility ==
 
index f4a2c95..8ea51ba 100644 (file)
@@ -156,7 +156,7 @@ function showToplevel ( $namespace = NS_MAIN, $including = false ) {
        }
 
        # At this point, $lines should contain an even number of elements.
-       $out .= "<table style='background: inherit;'>";
+       $out .= "<table class='allpageslist' style='background: inherit;'>";
        while ( count ( $lines ) > 0 ) {
                $inpoint = array_shift ( $lines );
                $outpoint = array_shift ( $lines );