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
cfc0a5d1
Commit
cfc0a5d1
authored
Dec 30, 2003
by
Dries
Browse files
- Fixed typo: comment_delete_thread() -> _comment_delete_thread().
parent
51208885
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/comment.module
View file @
cfc0a5d1
...
...
@@ -950,7 +950,7 @@ function _comment_delete_thread($comment) {
// Delete the comment's replies:
$result
=
db_query
(
"SELECT cid, subject FROM
{
comments
}
WHERE pid = %d"
,
$comment
->
cid
);
while
(
$comment
=
db_fetch_object
(
$result
))
{
comment_delete_thread
(
$comment
);
_
comment_delete_thread
(
$comment
);
}
}
...
...
modules/comment/comment.module
View file @
cfc0a5d1
...
...
@@ -950,7 +950,7 @@ function _comment_delete_thread($comment) {
// Delete the comment's replies:
$result
=
db_query
(
"SELECT cid, subject FROM
{
comments
}
WHERE pid = %d"
,
$comment
->
cid
);
while
(
$comment
=
db_fetch_object
(
$result
))
{
comment_delete_thread
(
$comment
);
_
comment_delete_thread
(
$comment
);
}
}
...
...
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