示例#1
0
 /**
  * Mark the thread as read for the active user
  * @return void
  */
 public function markRead()
 {
     if (empty($this->scriptProperties['print'])) {
         $this->thread->read($this->discuss->user->get('id'));
     }
 }
示例#2
0
 /**
  * Mark the thread as read
  * @return boolean
  */
 public function markAsRead()
 {
     return $this->thread->read($this->discuss->user->get('id'));
 }