summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-04 23:08:34 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-04 23:08:34 +0000
commitbb293ccfb5193d2f769af6a8422765784c205536 (patch)
tree2c635efe03fe2056ded63cf11feab571f4b214cf /modules/system
parent144bda7dbb2ec2a92c3c2b393c563e291b3fd073 (diff)
downloadbrdo-bb293ccfb5193d2f769af6a8422765784c205536.tar.gz
brdo-bb293ccfb5193d2f769af6a8422765784c205536.tar.bz2
#420358 follow-up by Dave Reid: Rename profiles default => standard and expert => minimal, for consistency with labels.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.install9
-rw-r--r--modules/system/system.module4
2 files changed, 11 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 478a09279..4a1e9ccdd 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -2719,6 +2719,15 @@ function system_update_7048() {
}
/**
+ * Rename 'Default' profile to 'Standard.'
+ */
+function system_update_7049() {
+ if (variable_get('install_profile', 'standard') == 'default') {
+ variable_set('install_profile', 'standard');
+ }
+}
+
+/**
* @} End of "defgroup updates-6.x-to-7.x"
* The next series of updates should start at 8000.
*/
diff --git a/modules/system/system.module b/modules/system/system.module
index 850be5446..067f171c8 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -642,7 +642,7 @@ function system_menu() {
);
}
- // Modules
+ // Modules.
$items['admin/modules'] = array(
'title' => 'Modules',
'description' => 'Enable or disable add-on modules for your site.',
@@ -675,7 +675,7 @@ function system_menu() {
'file' => 'system.admin.inc',
);
- // Configuration and modules.
+ // Configuration.
$items['admin/config'] = array(
'title' => 'Configuration',
'page callback' => 'system_admin_config_page',