diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-18 23:54:16 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-18 23:54:16 +0000 |
commit | 8bac5dc63f56ab510f2c9832abbb180208233cb8 (patch) | |
tree | f13b301d4d60df7fcec30cf967d4968439782d12 /modules/system/system.admin.inc | |
parent | 5f069ef95a8887271828c0ccc9fffa20e0fd947e (diff) | |
download | brdo-8bac5dc63f56ab510f2c9832abbb180208233cb8.tar.gz brdo-8bac5dc63f56ab510f2c9832abbb180208233cb8.tar.bz2 |
#190867 follow-up by scor: Fixed broken HEAD. Test bot, come back...
Diffstat (limited to 'modules/system/system.admin.inc')
-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 3073f62e2..a954fd97e 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1484,7 +1484,7 @@ function system_site_information_settings_validate($form, &$form_state) { form_set_value($form['site_frontpage'], drupal_get_normal_path($form_state['values']['site_frontpage']), $form_state); // Validate front page path. if (!drupal_valid_path($form_state['values']['site_frontpage'])) { - form_set_error('site_frontpage', t("The path '@path' is either invalid or you do not have access to it.", array('@path' => $item['link_path']))); + form_set_error('site_frontpage', t("The path '@path' is either invalid or you do not have access to it.", array('@path' => $form_state['values']['site_frontpage']))); } } |