function system_update_7049 in Drupal 7
Rename 'Default' profile to 'Standard.'
Related topics
File
- modules/
system/ system.install, line 2499 - Install, update and uninstall functions for the system module.
Code
function system_update_7049() {
if (variable_get('install_profile', 'standard') == 'default') {
variable_set('install_profile', 'standard');
}
}