From c1af6002ffc320fbe61cd5ac730afdde1d3f065f Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Mon, 13 Feb 2012 00:35:35 +0000 Subject: [PATCH] Revert r106393; I do not find it acceptible for MediaWiki to ship by-default strangling it's deprecation notices. Extension authors are supposed to be notified of deprecated code they are using that may disappear. This config variable was added so that devs who had an explicit reason to hide specific ranges of deprecation notices from MediaWiki (as opposed to all MediaWiki deprecation notices, or all php deprecation notices) not as a method of hiding notices that people are supposed to see from everyone. Any dev who wants to should shoot themselves in the foot, that's their job. It is NOT our job to shoot everyone in the foot because some devs are too lazy to shoot themselves. --- includes/DefaultSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 2375c99b07..aa589eb459 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4121,7 +4121,7 @@ $wgDevelopmentWarnings = false; * development warnings will not be generated for deprecations added in releases * after the limit. */ -$wgDeprecationReleaseLimit = '1.17'; +$wgDeprecationReleaseLimit = false; /** Only record profiling info for pages that took longer than this */ $wgProfileLimit = 0.0; -- 2.20.1