1 system.install | system_update_1035() |
Set the weight of Layout module to run last.
Related topics
File
- core/
modules/ system/ system.install, line 2699 - Install, update and uninstall functions for the system module.
Code
function system_update_1035() {
// This is in system module because Layout module was enabled earlier in the
// upgrade path from D7. If it is in layout.install, it requires that
// update.php be run twice when doing an upgrade.
module_set_weight('layout', 60);
}