diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-08-15 02:01:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-08-15 02:01:50 +0000 |
commit | 9239621a0b0fa21c7ac4a44994a52f4e7a6ae5e6 (patch) | |
tree | df4680df28fd242cb77b1e9a9cf2ad4aed5f6222 /modules/system | |
parent | 37ba2fa49eb803447577777861785f4c15346f0e (diff) | |
download | brdo-9239621a0b0fa21c7ac4a44994a52f4e7a6ae5e6.tar.gz brdo-9239621a0b0fa21c7ac4a44994a52f4e7a6ae5e6.tar.bz2 |
- Patch #878752 by heather: mis-matched text on maintenance mode administration page.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 08b138469..df12ae6c8 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2167,7 +2167,7 @@ function system_site_maintenance_mode() { '#type' => 'checkbox', '#title' => t('Put site into maintenance mode'), '#default_value' => variable_get('maintenance_mode', 0), - '#description' => t('When enabled, only users with the "Access site in maintenance mode" <a href="@permissions-url">permission</a> are able to access your site to perform maintenance; all other visitors see the maintenance mode message configured below. Authorized users can log in directly via the <a href="@user-login">user login</a> page.', array('@permissions-url' => url('admin/people/permissions'), '@user-login' => url('user'))), + '#description' => t('When enabled, only users with the "Use the site in maintenance mode" <a href="@permissions-url">permission</a> are able to access your site to perform maintenance; all other visitors see the maintenance mode message configured below. Authorized users can log in directly via the <a href="@user-login">user login</a> page.', array('@permissions-url' => url('admin/people/permissions'), '@user-login' => url('user'))), ); $form['maintenance_mode_message'] = array( '#type' => 'textarea', |