silverstripe-spamprotection/_config.php
Ingo Schommer a9545bc842 More accurate class_exists() check
The class "Comment" was actually defined by
phing/filters/StripLineComments.php. Since I have installed
phing globally through composer, its automatically in the include_path.
That's a separate problem, but this is a viable workaround.
2013-12-29 12:01:53 +01:00

18 lines
459 B
PHP

<?php
/**
* Default configuration settings for the Spam Protection module.
*
* You should not put your own configuration in here rather use your
* mysite/_config.php file
*
* @package spamprotection
*/
if(class_exists('CommentingController')) {
/**
* If the comments module is installed then add the spam protection module
* to the comments form via this extension
*/
Object::add_extension('CommentingController', 'CommentSpamProtection');
}