diff --git a/Core/Contents/Lib/SpamRating.php b/Core/Contents/Lib/SpamRating.php index 0ecab5b92..627528b84 100644 --- a/Core/Contents/Lib/SpamRating.php +++ b/Core/Contents/Lib/SpamRating.php @@ -371,7 +371,9 @@ public function _getEmailUser($email) { public function rateWebsite($data) { $points = 0; - $website = $data[$this->_config('website')]; + if (array_key_exists($this->_config('website'), $data)) { + $website = $data[$this->_config('website')]; + } if (empty($website)) { return $points;