summaryrefslogtreecommitdiff
path: root/profiles/default/default.profile
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 /profiles/default/default.profile
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 'profiles/default/default.profile')
-rw-r--r--profiles/default/default.profile14
1 files changed, 0 insertions, 14 deletions
diff --git a/profiles/default/default.profile b/profiles/default/default.profile
deleted file mode 100644
index 89800f66b..000000000
--- a/profiles/default/default.profile
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-// $Id$
-
-/**
- * Implements hook_form_alter().
- *
- * Allows the profile to alter the site configuration form.
- */
-function default_form_alter(&$form, $form_state, $form_id) {
- if ($form_id == 'install_configure_form') {
- // Set default for site name field.
- $form['site_information']['site_name']['#default_value'] = $_SERVER['SERVER_NAME'];
- }
-}