function system_update_7049
Rename 'Default' profile to 'Standard.'
Related topics
Archivo
- drupal-7.x/
modules/ system/ system.install, line 2388 - Install, update and uninstall functions for the system module.
Código
function system_update_7049() {
if (variable_get('install_profile', 'standard') == 'default') {
variable_set('install_profile', 'standard');
}
}