Index: trunk/phase3/includes/Preferences.php |
— | — | @@ -844,6 +844,14 @@ |
845 | 845 | 'label-message' => 'tog-watchlisthideliu', |
846 | 846 | ); |
847 | 847 | |
| 848 | + if ( $wgUseRCPatrol ) { |
| 849 | + $defaultPreferences['watchlisthidepatrolled'] = array( |
| 850 | + 'type' => 'toggle', |
| 851 | + 'section' => 'watchlist/advancedwatchlist', |
| 852 | + 'label-message' => 'tog-watchlisthidepatrolled', |
| 853 | + ); |
| 854 | + } |
| 855 | + |
848 | 856 | if ( $wgEnableAPI ) { |
849 | 857 | # Some random gibberish as a proposed default |
850 | 858 | $hash = sha1( mt_rand() . microtime( true ) ); |
— | — | @@ -856,14 +864,6 @@ |
857 | 865 | ); |
858 | 866 | } |
859 | 867 | |
860 | | - if ( $wgUseRCPatrol ) { |
861 | | - $defaultPreferences['watchlisthidepatrolled'] = array( |
862 | | - 'type' => 'toggle', |
863 | | - 'section' => 'watchlist/advancedwatchlist', |
864 | | - 'label-message' => 'tog-watchlisthidepatrolled', |
865 | | - ); |
866 | | - } |
867 | | - |
868 | 868 | $watchTypes = array( |
869 | 869 | 'edit' => 'watchdefault', |
870 | 870 | 'move' => 'watchmoves', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -123,8 +123,10 @@ |
124 | 124 | * (bug 23080) New usernames now limited to 235 bytes so that custom skin files |
125 | 125 | work. |
126 | 126 | * (bug 23075) Correct MediaTransformError default width in gallery. |
127 | | -* (bug 16487) The Anonymous user account used on Postgres is no longer |
| 127 | +* (bug 16487) The Anonymous user account used on Postgres is no longer |
128 | 128 | displayed on Special:Listusers. |
| 129 | +* (bug 23313) Move watchlisthidepatrolled above token in watchlist preferences |
| 130 | + to enhance preference grouping. |
129 | 131 | |
130 | 132 | === API changes in 1.17 === |
131 | 133 | * (bug 22738) Allow filtering by action type on query=logevent |