From 80ff5109a774a69473e2a9d74a49b8dc4da03e8f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 29 Jul 2007 17:28:23 +0000 Subject: - Patch #162708 by Eaton and Earl: add support for image buttons to FAPI3. This is a small form API extension (doesn't break existing code) that facilitates the Drupal 6 upgrade of the Views module. A good example of why it can be beneficial to start upgrading your modules early on in the code freeze. ;) --- modules/menu/menu.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/menu') diff --git a/modules/menu/menu.module b/modules/menu/menu.module index cc72f8ac9..abe5889d5 100644 --- a/modules/menu/menu.module +++ b/modules/menu/menu.module @@ -478,7 +478,7 @@ function menu_delete_menu_confirm(&$form_state, $menu) { if ($num_links) { $caption .= '

'. format_plural($num_links, 'Warning: There is currently 1 menu item in %title. It will be deleted (system-defined items will be reset).', 'Warning: There are currently @count menu items in %title. They will be deleted (system-defined items will be reset).', array('%title' => $menu['title'])) .'

'; } - $caption .= '

'. t('This action cannot be undone.') .'

'; + $caption .= '

'. t('This action cannot be undone.') .'

'; return confirm_form($form, t('Are you sure you want to delete the custom menu %title?', array('%title' => $menu['title'])), 'admin/build/menu-customize/'. $menu['menu_name'], $caption, t('Delete')); } -- cgit v1.2.3