* (bug 21470) MediaWiki:Sp-contributions-explain is now wrapped in a <p> with id...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 11 Nov 2009 14:16:23 +0000 (14:16 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 11 Nov 2009 14:16:23 +0000 (14:16 +0000)
RELEASE-NOTES
includes/specials/SpecialContributions.php

index 1f338c4..d49a5ca 100644 (file)
@@ -624,6 +624,8 @@ Hopefully we will remove this configuration var soon)
 * (bug 13453) rebuildrecentchanges maintenance script works on PG again
 * (bug 16583) Reduce false positives when checking for PHP (on upload, etc.)
 * (bug 20112) Bitrotted tests in the t/ directory were failing.
+* (bug 21470) MediaWiki:Sp-contributions-explain is now wrapped in a <p> with
+  id "mw-sp-contributions-explain"
 
 == API changes in 1.16 ==
 
index 0663d53..ec21c9c 100644 (file)
@@ -330,7 +330,7 @@ class SpecialContributions extends SpecialPage {
        
                $explain = wfMsgExt( 'sp-contributions-explain', 'parseinline' );
                if( !wfEmptyMsg( 'sp-contributions-explain', $explain ) )
-                       $f .= "<p>{$explain}</p>";
+                       $f .= "<p id='mw-sp-contributions-explain'>{$explain}</p>";
        
                $f .= '</fieldset>' .
                        Xml::closeElement( 'form' );