From 7d48f2c1c857b23ce08343ac92454480e04ea974 Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Tue, 8 Dec 2009 01:50:35 +0000 Subject: [PATCH] BUGFIX: fixed spam not being turned into ham if spamprotection isnt enabled. PATCH via simon_w #4813 git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@94571 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/sitefeatures/PageComment.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/sitefeatures/PageComment.php b/code/sitefeatures/PageComment.php index 8f82c087..c80aa4c4 100755 --- a/code/sitefeatures/PageComment.php +++ b/code/sitefeatures/PageComment.php @@ -259,8 +259,6 @@ class PageComment_Controller extends Controller { // if spam protection module exists if(class_exists('SpamProtectorManager')) { SpamProtectorManager::send_feedback($comment, 'ham'); - $comment->setField('IsSpam', false); - $comment->write(); } if(SSAkismet::isEnabled()) { @@ -272,9 +270,9 @@ class PageComment_Controller extends Controller { } catch (Exception $e) { // Akismet didn't work, most likely the service is down. } - $comment->setField('IsSpam', false); - $comment->write(); } + $comment->setField('IsSpam', false); + $comment->write(); } } if(Director::is_ajax()) {