handle_spam
This callback is invoked when a user re-classifies a comment from being ham to being spam.
Input Parameters
- $cb - a reference to the current
MT::Callbackobject handling this event. - $app - a reference to the
MT::Appobject processing this request. - $thing - a reference to the
MT::CommentorMT::TBPingbeing flagged as spam.
Return Value
None.
Example Handler
sub handle_ham {
my ($cb, $app, $thing) = @_;
# do something
}