From 4dd58118ab494960faf9eea54f02c6cd7745c93b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 2 Oct 2013 00:42:58 +0200 Subject: [PATCH] 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 --- RELEASE-NOTES-1.22 | 2 ++ includes/DefaultSettings.php | 1 + 2 files changed, 3 insertions(+) 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, -- 2.20.1