This commit is contained in:
Will Rossiter 2013-04-05 21:15:43 +13:00
commit c75d20b2ef
2 changed files with 9 additions and 8 deletions

View File

@ -9,10 +9,11 @@
* @package spamprotection
*/
if(class_exists('Comment')) {
/**
* If the comments module is installed then add the spam protection module
* to the comments form via this extension
*/
CommentingController::add_extension('CommentSpamProtection');
}
/**
* If the comments module is installed then add the spam protection module
* to the comments form via this extension.
*
* Place this line in your mysite/_config.php
*/
// CommentingController::add_extension('CommentSpamProtection');

View File

@ -12,7 +12,7 @@ class CommentSpamProtection extends Extension {
* Disable the AJAX commenting and update the form
* with the {@link SpamProtectorField} which is enabled
*/
function alterCommentForm(&$form) {
public function alterCommentForm(&$form) {
SpamProtectorManager::update_form($form, null, array(
'Name' => 'author_name',
'CommenterURL' => 'author_url',