diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-14 10:14:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-14 10:14:06 +0000 |
commit | 5a26869d0a8358f4450717bf614dd85833a61976 (patch) | |
tree | bf73ad769e360095af65844d464117fdb6a3b996 /modules/system/system.module | |
parent | d7df0ca8bd303c75abeedeffef750ff8e2592691 (diff) | |
download | brdo-5a26869d0a8358f4450717bf614dd85833a61976.tar.gz brdo-5a26869d0a8358f4450717bf614dd85833a61976.tar.bz2 |
- Usabilty improvement as per http://flickr.com/photos/dries/233650181/: replaced duplicate title with 'Site status'.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 65db7f7f4..bd575dc33 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -816,7 +816,7 @@ function system_site_maintenance_settings() { $form['site_offline'] = array( '#type' => 'radios', - '#title' => t('Site maintenance'), + '#title' => t('Site status'), '#default_value' => variable_get('site_offline', 0), '#options' => array(t('Online'), t('Off-line')), '#description' => t('When set to "Online", all visitors will be able to browse your site normally. When set to "Off-line", only users with the "administer site configuration" permission will be able to access your site to perform maintenance; all other visitors will see the site off-line message configured below. Authorized users can log in during "Off-line" mode directly via the <a href="@user-login">user login</a> page.', array('@user-login' => url('user'))), |