mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 14:03:52 +01:00
Merge branch 'MDL-77988' of https://github.com/paulholden/moodle
This commit is contained in:
commit
ac77df0ec7
@ -370,7 +370,8 @@ function drop_plugin_tables($name, $file, $feedback=true) {
|
||||
global $CFG, $DB;
|
||||
|
||||
// first try normal delete
|
||||
if (file_exists($file) and $DB->get_manager()->delete_tables_from_xmldb_file($file)) {
|
||||
if (file_exists($file)) {
|
||||
$DB->get_manager()->delete_tables_from_xmldb_file($file);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -21,6 +21,7 @@ information provided here is intended especially for developers.
|
||||
- `\core\encryption::METHOD_OPENSSL`
|
||||
- `\core\encryption::OPENSSL_CIPHER`
|
||||
* The `\core\encryption::is_sodium_installed` method is deprecated, as Sodium is now a requirement
|
||||
* The `drop_plugin_tables` method now returns immediately after deleting tables defined by plugin XMLDB file
|
||||
* Support for the following phpunit coverage info properties, deprecated since 3.11, has been removed:
|
||||
- `whitelistfolders`
|
||||
- `whitelistfiles`
|
||||
|
Loading…
x
Reference in New Issue
Block a user