function system_update_7009
Rename the variable for primary links.
Related topics
Archivo
- drupal-7.x/
modules/ system/ system.install, line 1938 - Install, update and uninstall functions for the system module.
Código
function system_update_7009() {
$current_primary = variable_get('menu_primary_links_source');
if (isset($current_primary)) {
variable_set('menu_main_links_source', $current_primary);
variable_del('menu_primary_links_source');
}
}