diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-25 09:04:22 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-25 09:04:22 +0000 |
commit | 205f8ff01bbbbf010a5bee4734cc169e67d8d452 (patch) | |
tree | 9393543b303f509427ee4debecd8c9d1f9e9bb3e /includes | |
parent | b86df33b8cd670fd230f2e13cc0a8098de449eb7 (diff) | |
download | brdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.gz brdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.bz2 |
#97941 by webchick. Consistent defaults for 'site_name' variable.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index cf296fddb..e516f86b5 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -313,7 +313,7 @@ function drupal_site_offline() { drupal_set_header('HTTP/1.0 503 Service unavailable'); drupal_set_title(t('Site off-line')); print theme('maintenance_page', filter_xss_admin(variable_get('site_offline_message', - t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', t('This Drupal site'))))))); + t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', 'Drupal')))))); } /** |