Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
0d134850
Commit
0d134850
authored
May 06, 2005
by
Steven Wittens
Browse files
- Missing theme placeholder in forum delete message.
parent
2debcfb1
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/forum.module
View file @
0d134850
...
...
@@ -132,7 +132,7 @@ function _forum_confirm_delete($tid) {
$extra
=
form_hidden
(
'tid'
,
$tid
);
$output
=
theme
(
'confirm'
,
t
(
'Are you sure you want to delete the forum %name?'
,
array
(
'%name'
=>
'<em>'
.
$term
->
name
.
'</em>'
)),
t
(
'Are you sure you want to delete the forum %name?'
,
array
(
'%name'
=>
theme
(
'placeholder'
,
$term
->
name
)),
'admin/forums'
,
t
(
'Deleting a forum or container will delete all sub-forums as well. This action cannot be undone.'
),
t
(
'Delete'
),
...
...
modules/forum/forum.module
View file @
0d134850
...
...
@@ -132,7 +132,7 @@ function _forum_confirm_delete($tid) {
$extra
=
form_hidden
(
'tid'
,
$tid
);
$output
=
theme
(
'confirm'
,
t
(
'Are you sure you want to delete the forum %name?'
,
array
(
'%name'
=>
'<em>'
.
$term
->
name
.
'</em>'
)),
t
(
'Are you sure you want to delete the forum %name?'
,
array
(
'%name'
=>
theme
(
'placeholder'
,
$term
->
name
)),
'admin/forums'
,
t
(
'Deleting a forum or container will delete all sub-forums as well. This action cannot be undone.'
),
t
(
'Delete'
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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