function autoload_registry_update in Autoload 6.2
Update the registry based on the latest files listed in the database.
This function should be used when system_rebuild_module_data() does not need to be called, because it is already known that the list of files in the {system} table matches those in the file system.
See also
Related topics
1 call to autoload_registry_update()
- autoload_registry_rebuild in ./
autoload.module - Rescan all enabled modules and rebuild the registry.
File
- ./
autoload.module, line 236
Code
function autoload_registry_update() {
module_load_include('inc', 'autoload', 'autoload.registry');
_autoload_registry_update();
}