Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
e2153365
Commit
e2153365
authored
14 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#991726
by wojtha, meba: missing format_plural() in comments and node module.
parent
7361b458
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
modules/comment/comment.admin.inc
+1
-1
1 addition, 1 deletion
modules/comment/comment.admin.inc
modules/comment/comment.test
+1
-1
1 addition, 1 deletion
modules/comment/comment.test
modules/node/node.admin.inc
+1
-1
1 addition, 1 deletion
modules/node/node.admin.inc
with
3 additions
and
3 deletions
modules/comment/comment.admin.inc
+
1
−
1
View file @
e2153365
...
@@ -232,7 +232,7 @@ function comment_multiple_delete_confirm_submit($form, &$form_state) {
...
@@ -232,7 +232,7 @@ function comment_multiple_delete_confirm_submit($form, &$form_state) {
cache_clear_all
();
cache_clear_all
();
$count
=
count
(
$form_state
[
'values'
][
'comments'
]);
$count
=
count
(
$form_state
[
'values'
][
'comments'
]);
watchdog
(
'content'
,
'Deleted @count comments.'
,
array
(
'@count'
=>
$count
));
watchdog
(
'content'
,
'Deleted @count comments.'
,
array
(
'@count'
=>
$count
));
drupal_set_message
(
t
(
'Deleted
@count
comment
s
.'
,
array
(
'@count'
=>
$count
)
));
drupal_set_message
(
format_plural
(
$count
,
'Deleted
1
comment.'
,
'Deleted @count comments.'
));
}
}
$form_state
[
'redirect'
]
=
'admin/content/comment'
;
$form_state
[
'redirect'
]
=
'admin/content/comment'
;
}
}
...
...
This diff is collapsed.
Click to expand it.
modules/comment/comment.test
+
1
−
1
View file @
e2153365
...
@@ -226,7 +226,7 @@ class CommentHelperCase extends DrupalWebTestCase {
...
@@ -226,7 +226,7 @@ class CommentHelperCase extends DrupalWebTestCase {
if
(
$operation
==
'delete'
)
{
if
(
$operation
==
'delete'
)
{
$this
->
drupalPost
(
NULL
,
array
(),
t
(
'Delete comments'
));
$this
->
drupalPost
(
NULL
,
array
(),
t
(
'Delete comments'
));
$this
->
assertRaw
(
t
(
'Deleted
@count
comment
s
.'
,
array
(
'@count'
=>
1
)
),
t
(
'Operation "'
.
$operation
.
'" was performed on comment.'
));
$this
->
assertRaw
(
format_plural
(
1
,
'Deleted
1
comment.'
,
'Deleted @count comments.'
),
t
(
'Operation "'
.
$operation
.
'" was performed on comment.'
));
}
}
else
{
else
{
$this
->
assertText
(
t
(
'The update has been performed.'
),
t
(
'Operation "'
.
$operation
.
'" was performed on comment.'
));
$this
->
assertText
(
t
(
'The update has been performed.'
),
t
(
'Operation "'
.
$operation
.
'" was performed on comment.'
));
...
...
This diff is collapsed.
Click to expand it.
modules/node/node.admin.inc
+
1
−
1
View file @
e2153365
...
@@ -595,7 +595,7 @@ function node_multiple_delete_confirm_submit($form, &$form_state) {
...
@@ -595,7 +595,7 @@ function node_multiple_delete_confirm_submit($form, &$form_state) {
node_delete_multiple
(
array_keys
(
$form_state
[
'values'
][
'nodes'
]));
node_delete_multiple
(
array_keys
(
$form_state
[
'values'
][
'nodes'
]));
$count
=
count
(
$form_state
[
'values'
][
'nodes'
]);
$count
=
count
(
$form_state
[
'values'
][
'nodes'
]);
watchdog
(
'content'
,
'Deleted @count posts.'
,
array
(
'@count'
=>
$count
));
watchdog
(
'content'
,
'Deleted @count posts.'
,
array
(
'@count'
=>
$count
));
drupal_set_message
(
t
(
'Deleted
@count
post
s
.'
,
array
(
'@count'
=>
$count
)
));
drupal_set_message
(
format_plural
(
$count
,
'Deleted
1
post.'
,
'Deleted @count posts.'
));
}
}
$form_state
[
'redirect'
]
=
'admin/content'
;
$form_state
[
'redirect'
]
=
'admin/content'
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment