Ejemplo n.º 1
0
 /**
  * Report comment inappropriate.
  *
  * @return void
  * @access public
  */
 public function inappropriateComment()
 {
     include_once 'services/Record/UserComments.php';
     if (!UserComments::inappropriateComment()) {
         return $this->output(translate('inappropriate_comment_error_save'), JSON::STATUS_ERROR);
     }
     return $this->output(translate('Done'), JSON::STATUS_OK);
 }