Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
afd01f2a
Commit
afd01f2a
authored
Sep 09, 2006
by
Dries Buytaert
Browse files
- Patch
#83213
by edkwh: removed stray theme('placeholder').
parent
d48100eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/menu/menu.module
View file @
afd01f2a
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment