Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -588,6 +588,8 @@ |
589 | 589 | 'nocreatetitle', |
590 | 590 | 'nocreatetext', |
591 | 591 | 'nocreate-loggedin', |
| 592 | + 'sectioneditnotsupported-title', |
| 593 | + 'sectioneditnotsupported-text', |
592 | 594 | 'permissionserrors', |
593 | 595 | 'permissionserrorstext', |
594 | 596 | 'permissionserrorstext-withaction', |
Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1541,7 +1541,7 @@ |
1542 | 1542 | if ( $userInputAttrs ) |
1543 | 1543 | $inputAttrs += $userInputAttrs; |
1544 | 1544 | $spanLabelAttrs = array( |
1545 | | - 'class' => $summaryClass, |
| 1545 | + 'class' => $this->missingSummary ? 'mw-summarymissed' : 'mw-summary', |
1546 | 1546 | 'id' => "wpSummaryLabel" |
1547 | 1547 | ); |
1548 | 1548 | if ( is_array($userSpanLabelAttrs) ) |