Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1363,13 +1363,10 @@ |
1364 | 1364 | if ( $this->section == 'new' ) { |
1365 | 1365 | $commentsubject = ''; |
1366 | 1366 | if ( !$wgRequest->getBool( 'nosummary' ) ) { |
1367 | | - # Add an ID if 'missingsummary' is triggered to allow styling of the summary line |
1368 | | - $summaryMissedID = $this->missingSummary ? ' mw-summarymissed' : ''; |
1369 | | - |
1370 | 1367 | $commentsubject = |
1371 | 1368 | Xml::tags( 'label', array( 'for' => 'wpSummary' ), $subject ); |
1372 | 1369 | $commentsubject = |
1373 | | - Xml::tags( 'span', array( 'id' => "wpSummaryLabel$summaryMissedID" ), $commentsubject ); |
| 1370 | + Xml::tags( 'span', array( 'id' => 'wpSummaryLabel' ), $commentsubject ); |
1374 | 1371 | $commentsubject .= ' '; |
1375 | 1372 | $commentsubject .= Xml::input( 'wpSummary', |
1376 | 1373 | 60, |
— | — | @@ -1388,12 +1385,10 @@ |
1389 | 1386 | } else { |
1390 | 1387 | $commentsubject = ''; |
1391 | 1388 | |
1392 | | - # Add an ID if 'missingsummary' is triggered to allow styling of the summary line |
1393 | | - $summaryMissedID = $this->missingSummary ? ' mw-summarymissed' : ''; |
1394 | | - |
1395 | 1389 | $editsummary = Xml::tags( 'label', array( 'for' => 'wpSummary' ), $summary ); |
1396 | | - $editsummary = Xml::tags( 'span', array( 'id' => "wpSummaryLabel$summaryMissedID" ), $editsummary ) . ' '; |
1397 | | - |
| 1390 | + $editsummary = |
| 1391 | + Xml::tags( 'span', array( 'id' => 'wpSummaryLabel' ), $editsummary ) . ' '; |
| 1392 | + |
1398 | 1393 | $editsummary .= Xml::input( 'wpSummary', |
1399 | 1394 | 60, |
1400 | 1395 | $summarytext, |
— | — | @@ -1402,11 +1397,11 @@ |
1403 | 1398 | 'maxlength' => '200', |
1404 | 1399 | 'tabindex' => '1' |
1405 | 1400 | ) ); |
1406 | | - |
| 1401 | + |
1407 | 1402 | // No idea where this is closed. |
1408 | 1403 | $editsummary = Xml::openElement( 'div', array( 'class' => 'editOptions' ) ) |
1409 | 1404 | . $editsummary . '<br/>'; |
1410 | | - |
| 1405 | + |
1411 | 1406 | $summarypreview = ''; |
1412 | 1407 | if ( $summarytext && $this->preview ) { |
1413 | 1408 | $summarypreview = |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -116,8 +116,7 @@ |
117 | 117 | * Special:ListUsers: Sort list of usergroups by alphabet |
118 | 118 | * (bug 16762) Special:Movepage now shows a list of subpages when possible |
119 | 119 | * (bug 17585) Hide legend on Special:Specialpages from non-privileged users |
120 | | -* Add an ID if 'missingsummary' is triggered to allow styling of the summary |
121 | | - line |
| 120 | + |
122 | 121 | * Added $wgUseTagFilter to control enabling of filter-by-change-tag |
123 | 122 | * (bug 17291) MediaWiki:Nocontribs now has an optional $1 parameter for the |
124 | 123 | username |