From: Alexandre Emsenhuber Date: Wed, 30 Apr 2008 19:41:14 +0000 (+0000) Subject: Added some missing options to $wgDefaultUserOptions and fixed whitespaces X-Git-Tag: 1.31.0-rc.0~47982 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=b592e487de40b5f43290fca517d6df8b6d023c00;p=lhc%2Fweb%2Fwiklou.git Added some missing options to $wgDefaultUserOptions and fixed whitespaces --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index a6ca597e34..663dd447ce 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2046,41 +2046,57 @@ $wgDefaultSkin = 'monobook'; * */ $wgDefaultUserOptions = array( - 'quickbar' => 1, - 'underline' => 2, - 'cols' => 80, - 'rows' => 25, - 'searchlimit' => 20, - 'contextlines' => 5, - 'contextchars' => 50, - 'skin' => false, - 'math' => 1, - 'rcdays' => 7, - 'rclimit' => 50, - 'wllimit' => 250, - 'highlightbroken' => 1, - 'stubthreshold' => 0, - 'previewontop' => 1, - 'editsection' => 1, - 'editsectiononrightclick'=> 0, - 'showtoc' => 1, - 'showtoolbar' => 1, - 'date' => 'default', - 'imagesize' => 2, - 'thumbsize' => 2, - 'rememberpassword' => 0, - 'enotifwatchlistpages' => 0, - 'enotifusertalkpages' => 1, - 'enotifminoredits' => 0, - 'enotifrevealaddr' => 0, - 'shownumberswatching' => 1, - 'fancysig' => 0, - 'externaleditor' => 0, - 'externaldiff' => 0, - 'showjumplinks' => 1, - 'numberheadings' => 0, - 'uselivepreview' => 0, - 'watchlistdays' => 3.0, + 'quickbar' => 1, + 'underline' => 2, + 'cols' => 80, + 'rows' => 25, + 'searchlimit' => 20, + 'contextlines' => 5, + 'contextchars' => 50, + 'disablesuggest' => 0, + 'ajaxsearch' => 0, + 'skin' => false, + 'math' => 1, + 'usenewrc' => 0, + 'rcdays' => 7, + 'rclimit' => 50, + 'wllimit' => 250, + 'hideminor' => 0, + 'highlightbroken' => 1, + 'stubthreshold' => 0, + 'previewontop' => 1, + 'previewonfirst' => 0, + 'editsection' => 1, + 'editsectiononrightclick' => 0, + 'editondblclick' => 0, + 'editwidth' => 0, + 'showtoc' => 1, + 'showtoolbar' => 1, + 'minordefault' => 0, + 'date' => 'default', + 'imagesize' => 2, + 'thumbsize' => 2, + 'rememberpassword' => 0, + 'enotifwatchlistpages' => 0, + 'enotifusertalkpages' => 1, + 'enotifminoredits' => 0, + 'enotifrevealaddr' => 0, + 'shownumberswatching' => 1, + 'fancysig' => 0, + 'externaleditor' => 0, + 'externaldiff' => 0, + 'showjumplinks' => 1, + 'numberheadings' => 0, + 'uselivepreview' => 0, + 'watchlistdays' => 3.0, + 'extendwatchlist' => 0, + 'watchlisthideminor' => 0, + 'watchlisthidebots' => 0, + 'watchlisthideown' => 0, + 'watchcreations' => 0, + 'watchdefault' => 0, + 'watchmoves' => 0, + 'watchdeletion' => 0, ); /** Whether or not to allow and use real name fields. Defaults to true. */