From: Bartosz DziewoƄski Date: Tue, 1 Oct 2013 22:42:58 +0000 (+0200) Subject: Add missing default true value for 'vector-simplesearch' preference X-Git-Tag: 1.31.0-rc.0~18617^2 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=4dd58118ab494960faf9eea54f02c6cd7745c93b;p=lhc%2Fweb%2Fwiklou.git Add missing default true value for 'vector-simplesearch' preference It was off and only enabled (unconditionally) by the Vector extension which is being killed off per bug 45051. The preference was added in r68177, moved to core in r68224. Change-Id: Id5e96f5ed9dd532b33bc011104388a39f57277dd --- diff --git a/RELEASE-NOTES-1.22 b/RELEASE-NOTES-1.22 index 0e3e222d36..7933e06cc6 100644 --- a/RELEASE-NOTES-1.22 +++ b/RELEASE-NOTES-1.22 @@ -56,6 +56,8 @@ production. multiple destinations to be specified. * (bug 53862) portal-url, currentevents-url and helppage have been removed from the default Sidebar. +* The 'vector-simplesearch' preference is now enabled by default. Previously + it was only enabled if the Vector extension was installed. === New features in 1.22 === * (bug 44525) mediawiki.jqueryMsg can now parse (whitelisted) HTML elements and attributes. diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 89e6c875b6..19b2f41bea 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4004,6 +4004,7 @@ $wgDefaultUserOptions = array( 'underline' => 2, 'uselivepreview' => 0, 'usenewrc' => 0, + 'vector-simplesearch' => 1, 'watchcreations' => 0, 'watchdefault' => 0, 'watchdeletion' => 0,