I installed a fresh copy of Silverstripe 2.3.3 and the latest Blog Module [0.2.1], Mollom [v0.2], & Spam Protection [v0.2].
I also enabled the spam protection in mysite/_config.php by including
// The following 3 lines enables Mollom Spam Protection
Mollom::setPublicKey("xxx");
Mollom::setPrivateKey("xxx");
SpamProtectorManager::set_spam_protector('MollomSpamProtector');
Now when i go to my blog page and click on the sample blop entry title to go to
http://yoursite.com/sample-blog-entry/
i get a warning
[Warning] Unknown class passed as parameter
GET /sample-blog-entry/
Line 420 in /sapphire/core/Object.php
# is_subclass_of(SpamProtecterField,DataObject)
Line 420 of Object.php
# Object::prepare_statics(SpamProtecterField)
Line 175 of Object.php
# Object::get_static(SpamProtecterField,extensions)
Line 264 of Object.php
# Object::uninherited_static(SpamProtecterField,extensions)
Line 488 of Object.php
I notice that SpamProtecterField is spelled wrong and should be SpamProtectorField (with an O and not an E in protector)
Anybody else facing this issue?