diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-06 21:02:57 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-06 21:02:57 +0000 |
commit | ccf72e94176942e3033b11335957d66f4f9457e1 (patch) | |
tree | ebe7aa089d3c32bad801d0cd1f852abf95a48504 | |
parent | 490386721dd7c7aa11900c413056b43508f1b460 (diff) | |
download | brdo-ccf72e94176942e3033b11335957d66f4f9457e1.tar.gz brdo-ccf72e94176942e3033b11335957d66f4f9457e1.tar.bz2 |
#197386 follow up by JirkaRybka: tiny coding style issue
-rw-r--r-- | modules/menu/menu.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.admin.inc b/modules/menu/menu.admin.inc index 9022c4ca9..91ecd3050 100644 --- a/modules/menu/menu.admin.inc +++ b/modules/menu/menu.admin.inc @@ -328,7 +328,7 @@ function menu_edit_item_validate($form, &$form_state) { $item = &$form_state['values']['menu']; $normal_path = drupal_get_normal_path($item['link_path']); if ($item['link_path'] != $normal_path) { - drupal_set_message(t('The menu system stores system paths only, but will use the URL alias for display. %link_path has been stored as %normal_path', array('%link_path' => $item['link_path'], '%normal_path' => $normal_path))); + drupal_set_message(t('The menu system stores system paths only, but will use the URL alias for display. %link_path has been stored as %normal_path', array('%link_path' => $item['link_path'], '%normal_path' => $normal_path))); $item['link_path'] = $normal_path; } if (!menu_path_is_external($item['link_path'])) { |