/**
  * Send Feedback about a Object to the Mollom Service. Note that Mollom does not
  * want to know about ham (or valid entries) so the only valid feedback is what
  * level of spam it is, Which we currently do not support.
  * 
  * @param DataObject The DataObject which you want to send feedback about
  * @param String Feedback information
  * 
  * @return bool Whether feedback was sent
  */
 function sendFeedback($object = null, $feedback = "")
 {
     if ($object) {
         if ($object->hasField('SessionID')) {
             if (in_array($feedback, array('spam', 'profanity', 'low-quality', 'unwanted'))) {
                 MollomServer::initServerList();
                 return MollomServer::sendFeedback($object->SessionID, $feedback);
             }
         }
     }
     return false;
 }
 function init()
 {
     MollomServer::initServerList();
     return parent::init();
 }