Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -145,6 +145,7 @@ |
146 | 146 | unneeded CSS flipping of quickbar. Instead, introduce option 5 which sets |
147 | 147 | left/right according to the directionality of your interface language. |
148 | 148 | * (bug 19514) Unordered list list-style-image should be IE6-compatible (8-bit) |
| 149 | +* (bug 27410) The tag filter on a history page is now within a <label> element |
149 | 150 | |
150 | 151 | === API changes in 1.19 === |
151 | 152 | * BREAKING CHANGE: action=watch now requires POST and token. |
Index: trunk/phase3/CREDITS |
— | — | @@ -148,6 +148,7 @@ |
149 | 149 | * Stefano Codari |
150 | 150 | * Str4nd |
151 | 151 | * svip |
| 152 | +* The Evil IP address |
152 | 153 | * Tisane |
153 | 154 | * Tobias Müller |
154 | 155 | * Umherirrender |
Index: trunk/phase3/includes/ChangeTags.php |
— | — | @@ -1,8 +1,5 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -if( !defined( 'MEDIAWIKI' ) ) |
5 | | - die; |
6 | | - |
7 | 4 | class ChangeTags { |
8 | 5 | static function formatSummaryRow( $tags, $page ) { |
9 | 6 | if( !$tags ) |
— | — | @@ -165,7 +162,8 @@ |
166 | 163 | if ( !$wgUseTagFilter || !count( self::listDefinedTags() ) ) |
167 | 164 | return $fullForm ? '' : array(); |
168 | 165 | |
169 | | - $data = array( wfMsgExt( 'tag-filter', 'parseinline' ), Xml::input( 'tagfilter', 20, $selected ) ); |
| 166 | + $data = array( Xml::label( wfMsgExt( 'tag-filter', 'parseinline' ), 'tagfilter' ), |
| 167 | + Xml::input( 'tagfilter', 20, $selected ) ); |
170 | 168 | |
171 | 169 | if ( !$fullForm ) { |
172 | 170 | return $data; |