From 436cf350278a6a43146d30e40392b7e7c36bd010 Mon Sep 17 00:00:00 2001 From: Happy-melon Date: Sat, 13 Mar 2010 16:05:30 +0000 Subject: [PATCH] Sort $wgDefaultUserOptions elements alphabetically. --- includes/DefaultSettings.php | 96 ++++++++++++++++++------------------ 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 563acfea59..a8d10c5a08 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2716,72 +2716,72 @@ $wgHandheldForIPhone = false; * */ $wgDefaultUserOptions = array( - 'quickbar' => 1, - 'underline' => 2, + 'ccmeonemails' => 0, 'cols' => 80, - 'rows' => 25, - 'searchlimit' => 20, - 'contextlines' => 5, 'contextchars' => 50, + 'contextlines' => 5, + 'date' => 'default', + 'diffonly' => 0, + 'disablemail' => 0, 'disablesuggest' => 0, - 'skin' => false, - 'math' => 1, - 'usenewrc' => 0, - 'rcdays' => 7, - 'rclimit' => 50, - 'wllimit' => 250, - 'hideminor' => 0, - 'hidepatrolled' => 0, - 'newpageshidepatrolled' => 0, - 'highlightbroken' => 1, - 'stubthreshold' => 0, - 'previewontop' => 1, - 'previewonfirst' => 0, + 'editfont' => 'default', + 'editondblclick' => 0, 'editsection' => 1, 'editsectiononrightclick' => 0, - 'editondblclick' => 0, 'editwidth' => 0, - 'showtoc' => 1, - 'showtoolbar' => 1, - 'minordefault' => 0, - 'date' => 'default', - 'imagesize' => 2, - 'thumbsize' => 2, - 'rememberpassword' => 0, - 'nocache' => 0, - 'diffonly' => 0, - 'showhiddencats' => 0, - 'norollbackdiff' => 0, - 'enotifwatchlistpages' => 0, - 'enotifusertalkpages' => 1, 'enotifminoredits' => 0, 'enotifrevealaddr' => 0, - 'shownumberswatching' => 1, - 'fancysig' => 0, - 'externaleditor' => 0, + 'enotifusertalkpages' => 1, + 'enotifwatchlistpages' => 0, + 'extendwatchlist' => 0, 'externaldiff' => 0, + 'externaleditor' => 0, + 'fancysig' => 0, 'forceeditsummary' => 0, - 'showjumplinks' => 1, + 'gender' => 'unknown', + 'hideminor' => 0, + 'hidepatrolled' => 0, + 'highlightbroken' => 1, + 'imagesize' => 2, 'justify' => 0, + 'math' => 1, + 'minordefault' => 0, + 'newpageshidepatrolled' => 0, + 'nocache' => 0, + 'noconvertlink' => 0, + 'norollbackdiff' => 0, 'numberheadings' => 0, + 'previewonfirst' => 0, + 'previewontop' => 1, + 'quickbar' => 1, + 'rcdays' => 7, + 'rclimit' => 50, + 'rememberpassword' => 0, + 'rows' => 25, + 'searchlimit' => 20, + 'showhiddencats' => 0, + 'showjumplinks' => 1, + 'shownumberswatching' => 1, + 'showtoc' => 1, + 'showtoolbar' => 1, + 'skin' => false, + 'stubthreshold' => 0, + 'thumbsize' => 2, + 'underline' => 2, 'uselivepreview' => 0, + 'usenewrc' => 0, + 'watchcreations' => 0, + 'watchdefault' => 0, + 'watchdeletion' => 0, 'watchlistdays' => 3.0, - 'extendwatchlist' => 0, - 'watchlisthideminor' => 0, - 'watchlisthidebots' => 0, - 'watchlisthideown' => 0, 'watchlisthideanons' => 0, + 'watchlisthidebots' => 0, 'watchlisthideliu' => 0, + 'watchlisthideminor' => 0, + 'watchlisthideown' => 0, 'watchlisthidepatrolled' => 0, - 'watchcreations' => 0, - 'watchdefault' => 0, 'watchmoves' => 0, - 'watchdeletion' => 0, - 'noconvertlink' => 0, - 'gender' => 'unknown', - 'ccmeonemails' => 0, - 'disablemail' => 0, - 'editfont' => 'default', + 'wllimit' => 250, ); /** -- 2.20.1