Merge branch 'MDL-57243_master' of git://github.com/dmonllao/moodle

This commit is contained in:
Andrew Nicols 2016-12-02 10:49:34 +08:00
commit ddcb68b284
2 changed files with 10 additions and 0 deletions

View File

@ -35,6 +35,7 @@ defined('MOODLE_INTERNAL') || die();
// Like other files in the db directory this file uses an array.
// The old class name is the key, the new class name is the value.
// The array must be called $renamedclasses.
// @todo MDL-57244 These renamed classes will be removed in 3.6
$renamedclasses = array(
'core\progress\null' => 'core\progress\none',
'core_search\area\base' => 'core_search\base',

9
search/upgrade.txt Normal file
View File

@ -0,0 +1,9 @@
This files describes API changes in /search/*,
information provided here is intended especially for developers.
=== 3.2 ===
* Base search area classes have been renamed, please update your search areas to use the classes below:
- \core_search\area\base has been renamed to \core_search\base
- \core_search\area\base_mod has been renamed to \core_search\base_mod
- \core_search\area\base_activity has been renamed to \core_search\base_activity