Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -27,7 +27,6 @@ |
28 | 28 | 'tog-editsectiononrightclick', |
29 | 29 | 'tog-showtoc', |
30 | 30 | 'tog-rememberpassword', |
31 | | - 'tog-editwidth', |
32 | 31 | 'tog-watchcreations', |
33 | 32 | 'tog-watchdefault', |
34 | 33 | 'tog-watchmoves', |
Index: trunk/phase3/includes/User.php |
— | — | @@ -62,7 +62,6 @@ |
63 | 63 | 'editsectiononrightclick', |
64 | 64 | 'showtoc', |
65 | 65 | 'rememberpassword', |
66 | | - 'editwidth', |
67 | 66 | 'watchcreations', |
68 | 67 | 'watchdefault', |
69 | 68 | 'watchmoves', |
Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1655,12 +1655,9 @@ |
1656 | 1656 | 'id' => $name, |
1657 | 1657 | 'cols' => $wgUser->getIntOption( 'cols' ), |
1658 | 1658 | 'rows' => $wgUser->getIntOption( 'rows' ), |
1659 | | - 'style' => '' // avoid php notices when appending for editwidth preference (appending allows customAttribs['style'] to still work |
| 1659 | + 'style' => '' // avoid php notices when appending preferences (appending allows customAttribs['style'] to still work |
1660 | 1660 | ); |
1661 | 1661 | |
1662 | | - if ( $wgUser->getOption( 'editwidth' ) ) |
1663 | | - $attribs['style'] .= 'width: 100%'; |
1664 | | - |
1665 | 1662 | $wgOut->addHTML( Html::textarea( $name, $wikitext, $attribs ) ); |
1666 | 1663 | } |
1667 | 1664 | |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -2724,7 +2724,6 @@ |
2725 | 2725 | 'editondblclick' => 0, |
2726 | 2726 | 'editsection' => 1, |
2727 | 2727 | 'editsectiononrightclick' => 0, |
2728 | | - 'editwidth' => 0, |
2729 | 2728 | 'enotifminoredits' => 0, |
2730 | 2729 | 'enotifrevealaddr' => 0, |
2731 | 2730 | 'enotifusertalkpages' => 1, |
Index: trunk/phase3/includes/Preferences.php |
— | — | @@ -736,12 +736,6 @@ |
737 | 737 | 'section' => 'editing/advancedediting', |
738 | 738 | 'label-message' => 'tog-editondblclick', |
739 | 739 | ); |
740 | | - $defaultPreferences['editwidth'] = |
741 | | - array( |
742 | | - 'type' => 'toggle', |
743 | | - 'section' => 'editing/advancedediting', |
744 | | - 'label-message' => 'tog-editwidth', |
745 | | - ); |
746 | 740 | $defaultPreferences['showtoolbar'] = |
747 | 741 | array( |
748 | 742 | 'type' => 'toggle', |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -628,7 +628,6 @@ |
629 | 629 | 'tog-editsectiononrightclick' => 'Enable section editing by right clicking on section titles (requires JavaScript)', |
630 | 630 | 'tog-showtoc' => 'Show table of contents (for pages with more than 3 headings)', |
631 | 631 | 'tog-rememberpassword' => 'Remember my login on this computer', |
632 | | -'tog-editwidth' => 'Widen the edit box to fill the entire screen', |
633 | 632 | 'tog-watchcreations' => 'Add pages I create to my watchlist', |
634 | 633 | 'tog-watchdefault' => 'Add pages I edit to my watchlist', |
635 | 634 | 'tog-watchmoves' => 'Add pages I move to my watchlist', |