summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-03-23 21:24:02 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-03-23 21:24:02 +0000
commit667298972f2d0aea58239593010e73c15afd9d65 (patch)
tree195d65dffefdb1804d8368e3064587bfba0a9484 /modules/system/system.module
parent4a689a99b97b72f351c15f3f6dc99fd0cf735378 (diff)
downloadbrdo-667298972f2d0aea58239593010e73c15afd9d65.tar.gz
brdo-667298972f2d0aea58239593010e73c15afd9d65.tar.bz2
#54066, make site_name required. patch by Freso
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 51712beba..6868f6cb6 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -239,7 +239,7 @@ function system_view_general() {
);
$form['general']['site_name'] = array(
'#type' => 'textfield', '#title' => t('Name'), '#default_value' => variable_get('site_name', 'drupal'),
- '#description' => t('The name of this web site.')
+ '#description' => t('The name of this web site.'), '#required' => TRUE
);
$form['general']['site_mail'] = array(
'#type' => 'textfield', '#title' => t('E-mail address'), '#default_value' => variable_get('site_mail', ini_get('sendmail_from')),