Index: trunk/phase3/includes/ProtectionForm.php |
— | — | @@ -233,7 +233,10 @@ |
234 | 234 | |
235 | 235 | foreach( $this->mRestrictions as $action => $required ) { |
236 | 236 | /* Not all languages have V_x <-> N_x relation */ |
237 | | - $out .= Xml::element( 'th', null, wfMsg( 'restriction-' . $action ) ); |
| 237 | + $label = Xml::element( 'label', |
| 238 | + array( 'for' => "mwProtect-level-$action" ), |
| 239 | + wfMsg( 'restriction-' . $action ) ); |
| 240 | + $out .= "<th>$label</th>"; |
238 | 241 | } |
239 | 242 | $out .= "</tr> |
240 | 243 | <tr>\n"; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -63,8 +63,7 @@ |
64 | 64 | * (bug 13490) Show upload/file size limit on upload form |
65 | 65 | * Redesign of Special:Userrights |
66 | 66 | * Make rev_deleted log entries more intelligible. |
67 | | -* (6943) Added PAGESINCATEGORY: magic word |
68 | | -* (13624) Fix regression with manual thumb= parameter on images |
| 67 | +* (bug 6943) Added PAGESINCATEGORY: magic word |
69 | 68 | |
70 | 69 | |
71 | 70 | === Bug fixes in 1.13 === |
— | — | @@ -159,7 +158,10 @@ |
160 | 159 | * (bug 13630) Fixed warnings for pass by reference at call time in |
161 | 160 | Special:Revisiondelete when generating the log entry. |
162 | 161 | * (bug 12064) BeforePageDisplay hook is now called for all skins |
| 162 | +* (bug 13624) Fix regression with manual thumb= parameter on images |
| 163 | +* (bug 11039) Add missing labels on protection form |
163 | 164 | |
| 165 | + |
164 | 166 | === API changes in 1.13 === |
165 | 167 | |
166 | 168 | * Fixing main page display in meta=siteinfo |