1 update.install | update_update_1003() |
Removes the testing-only values from the update.settings config.
Related topics
File
- core/
modules/ update/ update.install, line 224 - Install, update, and uninstall functions for the Update Manager module.
Code
function update_update_1003() {
$config = config('update.settings');
$config->clear('update_xml_map');
$config->clear('update_system_info');
$config->save();
}