Skip to content
Snippets Groups Projects
Commit afd01f2a authored by Dries Buytaert's avatar Dries Buytaert
Browse files

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

parent d48100eb
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment