ENHANCEMENT: Be strict about deprecation errors for new 3.0.0 APIs, since we've removed references to them from core.

This commit is contained in:
Sam Minnee 2011-10-29 17:27:22 +13:00
parent 085598fac0
commit 4f16c5fa8f
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ if (!is_dir($aggregatecachedir)) mkdir($aggregatecachedir);
SS_Cache::add_backend('aggregatestore', 'File', array('cache_dir' => $aggregatecachedir));
SS_Cache::pick_backend('aggregatestore', 'aggregate', 1000);
Deprecation::notification_version('3.0.0-dev');
// If you don't want to see deprecation errors for the new APIs, change this to 3.0.0-dev.
Deprecation::notification_version('3.0.0');
// TODO Remove once new ManifestBuilder with submodule support is in place
require_once('admin/_config.php');