#19054 closed defect (bug) (invalid)
Bug in comment.php
| Reported by: | SamMan | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | General | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description
Hello!
I have WP ver. 3.2.1 and think thal line 617 in \wp-includes\comment.php must be correct from
extract($commentdata, EXTR_SKIP);
to
if (is_array($commentdata)) { extract($commentdata, EXTR_SKIP ); }
Otherwise we will have error sometimes when user add comment. The error is:
Warning: extract() [function.extract]: First argument should be an array in includes\comment.php, line 617.
This error, for example, has a place when anonymous user try to post too many comments in short time (flood).
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
This sounds like a conflict coming from a plugin to me.