From 55f9ec174214fa142b17f1d998dec393fb60e6c0 Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Thu, 28 Mar 2013 14:17:30 -0700 Subject: [PATCH] Enable $wgVectorUseIconWatch by default. The usability testing for this feature is over. We've had it enabled on the largest family of wiki in existence for ages. People are generally expecting to see this enabled when they install a new MediaWiki wiki. Change-Id: I6e7f4cf6c874fe9e34cc141c4305a6808c1fe576 --- RELEASE-NOTES-1.21 | 1 + includes/DefaultSettings.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.21 b/RELEASE-NOTES-1.21 index ecb37d53c5..ef053d0a2f 100644 --- a/RELEASE-NOTES-1.21 +++ b/RELEASE-NOTES-1.21 @@ -18,6 +18,7 @@ production. * $wgBug34832TransitionalRollback has been removed. * (bug 29472) $wgUseDynamicDates has been removed and its functionality disabled. +* $wgVectorUseIconWatch is now enabled by default. === New features in 1.21 === * (bug 38110) Schema changes (adding or dropping tables, indices and diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 26fe197d38..0822372ef5 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2841,7 +2841,7 @@ $wgVectorUseSimpleSearch = true; * - true = use an icon watch/unwatch button * - false = use watch/unwatch text link */ -$wgVectorUseIconWatch = false; +$wgVectorUseIconWatch = true; /** * Display user edit counts in various prominent places. -- 2.20.1