#15 closed defect (bug) (fixed)
get_commentdata() does not return comment moderation status
Reported by: | skippy | Owned by: | ryan |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | trivial | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
get_commentdata() accepts an optional "$include_unapproved" parameter, but it does not include the moderation status of comments in the return. To correct this, add the following block somewhere before the return statement:
if (false == $include_unapproved) {
$myrowcomment_approved?=$psotc->comment_approved;
}
Thus people can parse moderation status from the returned info.
Change History (5)
Note: See
TracTickets for help on using
tickets.
duh. That fix should be:
if (true == $include_unapproved) {
}