- Patch #83213 by edkwh: removed stray theme('placeholder').

5.x
Dries Buytaert 2006-09-09 08:21:42 +00:00
parent d48100eb88
commit afd01f2a61
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ function menu_item_delete_form($mid) {
function menu_item_delete_form_submit($form_id, $form_values) {
menu_delete_item($form_values['mid']);
$t_args = array('%title' => theme('placeholder', $form_values['title']));
$t_args = array('%title' => $form_values['title']);
if ($form_values['type'] & MENU_IS_ROOT) {
drupal_set_message(t('The menu %title has been deleted.', $t_args));
watchdog('menu', t('Deleted menu %title.', $t_args), WATCHDOG_NOTICE);