From be95418add223aa779c53139cc9b69812b8d6098 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Thu, 20 Dec 2012 01:14:19 -0800 Subject: [PATCH] (bug 39957) Document $wgUnwatchedPageThreshold var Added in I1cb6ee22d50d871a8c7083c5b7a091d31cf640f5. Change-Id: I35df67c66855c9aa1b8ee74ee2c57ff109823634 --- RELEASE-NOTES-1.21 | 3 +++ includes/DefaultSettings.php | 2 ++ 2 files changed, 5 insertions(+) diff --git a/RELEASE-NOTES-1.21 b/RELEASE-NOTES-1.21 index ca63bf40b0..46d69d01b7 100644 --- a/RELEASE-NOTES-1.21 +++ b/RELEASE-NOTES-1.21 @@ -13,6 +13,9 @@ production. * (bug 29374) $wgVectorUseSimpleSearch is now enabled by default. * Deprecated $wgAllowRealName is removed. Use $wgHiddenPrefs[] = 'realname' instead. +* (bug 39957) Added $wgUnwatchedPageThreshold, specifying minimum count + of page watchers required for the number to be accessible to users + without the unwatchedpages permission. === New features in 1.21 === * (bug 38110) Schema changes (adding or dropping tables, indicies and diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index c0c7d766ba..fdbcaa7615 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -5162,6 +5162,8 @@ $wgUseTagFilter = true; * If set to an integer, pages that are watched by more users than this * threshold will not require the unwatchedpages permission to view the * number of watchers. + * + * @since 1.21 */ $wgUnwatchedPageThreshold = false; -- 2.20.1