follow up to r106456 - use one setting instead two, which apparently made my commit...
[lhc/web/wiklou.git] / includes / DefaultSettings.php
index 5d3d437..1fe7870 100644 (file)
@@ -4062,17 +4062,16 @@ $wgShowHostnames = false;
 $wgDevelopmentWarnings = false;
 
 /**
+ * $wgDeprecationWarnings['limit']
  * Release limitation to wfDeprecated warnings, if set to a release number
  * development warnings will not be generated for deprecations added in releases
  * after the limit.
- */
-$wgDeprecationReleaseLimit = '1.17';
-
-/**
+ * 
+ * $wgDeprecationWarnings['whitelist']
  * Function name whitelist for wfDeprecated warnings. You will not be warned
  * for usage of deprecated functions in this list.
  */
-$wgDeprecationWhitelist = array();
+$wgDeprecationWarnings = array( 'limit' => '1.17', 'whitelist' => array() ); 
 
 /** Only record profiling info for pages that took longer than this */
 $wgProfileLimit = 0.0;