summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-22 20:01:10 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-22 20:01:10 +0000
commit333303009ba71ddb87f4eef4d87197bccffa48d7 (patch)
treee8bb429c37864a0ba4a3ec3b3881d3a90765b164 /modules
parenta2694498f141f24ba4860f73a2c3ec238f65eab0 (diff)
downloadbrdo-333303009ba71ddb87f4eef4d87197bccffa48d7.tar.gz
brdo-333303009ba71ddb87f4eef4d87197bccffa48d7.tar.bz2
#556714 by Davy Van Den Bremt: Fixed broken url in administration theme status message.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index c99d9ee28..f80d2a8fc 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -329,8 +329,7 @@ function system_themes_form_submit($form, &$form_state) {
}
}
if ($form_state['values']['admin_theme'] && $form_state['values']['admin_theme'] != $form_state['values']['theme_default']) {
- drupal_set_message(t('Please note that the <a href="!admin_theme_page">administration theme</a> is still set to the %admin_theme theme; consequently, the theme on this page remains unchanged. All non-administrative sections of the site, however, will show the selected %selected_theme theme by default.', array(
- '!admin_theme_page' => url('admin/settings/admin'),
+ drupal_set_message(t('Please note that the administration theme is still set to the %admin_theme theme; consequently, the theme on this page remains unchanged. All non-administrative sections of the site, however, will show the selected %selected_theme theme by default.', array(
'%admin_theme' => $form_state['values']['admin_theme'],
'%selected_theme' => $form_state['values']['theme_default'],
)));