You are here

function kaltura_comments_comment in Kaltura 6.2

Same name and namespace in other branches
  1. 5 plugins/kaltura_comments/kaltura_comments.module \kaltura_comments_comment()
  2. 6 plugins/kaltura_comments/kaltura_comments.module \kaltura_comments_comment()

File

plugins/kaltura_comments/kaltura_comments.module, line 9

Code

function kaltura_comments_comment(&$a1, $op) {
  switch ($op) {
    case 'view':
      $comment = kaltura_replace_tags($a1->comment, $comment = TRUE);
      $a1->comment = $comment;
      break;
  }
}