From: Ori Livneh Date: Thu, 20 Dec 2012 09:14:19 +0000 (-0800) Subject: (bug 39957) Document $wgUnwatchedPageThreshold var X-Git-Tag: 1.31.0-rc.0~21253 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=be95418add223aa779c53139cc9b69812b8d6098;p=lhc%2Fweb%2Fwiklou.git (bug 39957) Document $wgUnwatchedPageThreshold var Added in I1cb6ee22d50d871a8c7083c5b7a091d31cf640f5. Change-Id: I35df67c66855c9aa1b8ee74ee2c57ff109823634 --- 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;