Try replacing that block with this:
PHP Code:
if (isset($result['exceeded_daily_limit']) && $result['exceeded_daily_limit']) {
$h->messages[$h->lang['comment_moderation_exceeded_daily_limit']] = 'green';
} elseif (isset($result['exceeded_url_limit']) && $result['exceeded_url_limit']) {
$h->messages[$h->lang['comment_moderation_exceeded_url_limit']] = 'green';
} elseif (isset($result['not_enough_comments']) && $result['not_enough_comments']) {
$h->messages[$h->lang['comment_moderation_not_enough_comments']] = 'green';
}
If it works, I'll include it in the next version.
P.S. In future, could you paste your plugin list from your system report instead of posting a screenshot, thanks.
Bookmarks