Index: trunk/phase3/includes/Preferences.php |
— | — | @@ -750,7 +750,7 @@ |
751 | 751 | $defaultPreferences['rcdays'] = array( |
752 | 752 | 'type' => 'float', |
753 | 753 | 'label-message' => 'recentchangesdays', |
754 | | - 'section' => 'rc/display', |
| 754 | + 'section' => 'rc/displayrc', |
755 | 755 | 'min' => 1, |
756 | 756 | 'max' => ceil( $wgRCMaxAge / ( 3600 * 24 ) ), |
757 | 757 | 'help' => wfMsgExt( |
— | — | @@ -763,7 +763,7 @@ |
764 | 764 | 'type' => 'int', |
765 | 765 | 'label-message' => 'recentchangescount', |
766 | 766 | 'help-message' => 'prefs-help-recentchangescount', |
767 | | - 'section' => 'rc/display', |
| 767 | + 'section' => 'rc/displayrc', |
768 | 768 | ); |
769 | 769 | $defaultPreferences['usenewrc'] = array( |
770 | 770 | 'type' => 'toggle', |
— | — | @@ -807,7 +807,7 @@ |
808 | 808 | 'type' => 'float', |
809 | 809 | 'min' => 0, |
810 | 810 | 'max' => 7, |
811 | | - 'section' => 'watchlist/display', |
| 811 | + 'section' => 'watchlist/displaywatchlist', |
812 | 812 | 'help' => wfMsgHtml( 'prefs-watchlist-days-max' ), |
813 | 813 | 'label-message' => 'prefs-watchlist-days', |
814 | 814 | ); |
— | — | @@ -817,7 +817,7 @@ |
818 | 818 | 'max' => 1000, |
819 | 819 | 'label-message' => 'prefs-watchlist-edits', |
820 | 820 | 'help' => wfMsgHtml( 'prefs-watchlist-edits-max' ), |
821 | | - 'section' => 'watchlist/display', |
| 821 | + 'section' => 'watchlist/displaywatchlist', |
822 | 822 | ); |
823 | 823 | $defaultPreferences['extendwatchlist'] = array( |
824 | 824 | 'type' => 'toggle', |
— | — | @@ -899,19 +899,19 @@ |
900 | 900 | $defaultPreferences['searchlimit'] = array( |
901 | 901 | 'type' => 'int', |
902 | 902 | 'label-message' => 'resultsperpage', |
903 | | - 'section' => 'searchoptions/display', |
| 903 | + 'section' => 'searchoptions/displaysearchoptions', |
904 | 904 | 'min' => 0, |
905 | 905 | ); |
906 | 906 | $defaultPreferences['contextlines'] = array( |
907 | 907 | 'type' => 'int', |
908 | 908 | 'label-message' => 'contextlines', |
909 | | - 'section' => 'searchoptions/display', |
| 909 | + 'section' => 'searchoptions/displaysearchoptions', |
910 | 910 | 'min' => 0, |
911 | 911 | ); |
912 | 912 | $defaultPreferences['contextchars'] = array( |
913 | 913 | 'type' => 'int', |
914 | 914 | 'label-message' => 'contextchars', |
915 | | - 'section' => 'searchoptions/display', |
| 915 | + 'section' => 'searchoptions/displaysearchoptions', |
916 | 916 | 'min' => 0, |
917 | 917 | ); |
918 | 918 | |
— | — | @@ -920,7 +920,7 @@ |
921 | 921 | $defaultPreferences['disablesuggest'] = array( |
922 | 922 | 'type' => 'toggle', |
923 | 923 | 'label-message' => 'mwsuggest-disable', |
924 | | - 'section' => 'searchoptions/display', |
| 924 | + 'section' => 'searchoptions/displaysearchoptions', |
925 | 925 | ); |
926 | 926 | } |
927 | 927 | |
— | — | @@ -929,7 +929,7 @@ |
930 | 930 | $defaultPreferences['vector-simplesearch'] = array( |
931 | 931 | 'type' => 'toggle', |
932 | 932 | 'label-message' => 'vector-simplesearch-preference', |
933 | | - 'section' => 'searchoptions/display' |
| 933 | + 'section' => 'searchoptions/displaysearchoptions' |
934 | 934 | ); |
935 | 935 | } |
936 | 936 | |