diff options
Diffstat (limited to 'modules/akismet/helpers')
-rw-r--r-- | modules/akismet/helpers/akismet_event.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/akismet/helpers/akismet_event.php b/modules/akismet/helpers/akismet_event.php index 1a14699b..41388dfb 100644 --- a/modules/akismet/helpers/akismet_event.php +++ b/modules/akismet/helpers/akismet_event.php @@ -19,6 +19,10 @@ */ class akismet_event_Core { static function comment_created($comment) { + if (!module::get_var("akismet", "api_key")) { + return; + } + switch(akismet::check_comment($comment)) { case "spam": $comment->state = "spam"; @@ -37,6 +41,10 @@ class akismet_event_Core { } static function comment_updated($old, $new) { + if (!module::get_var("akismet", "api_key")) { + return; + } + if ($old->state != "spam" && $new->state == "spam") { akismet::submit_spam($new); } else if ($old->state == "spam" && $new->state != "spam") { |