Example #1
0
 /**
  * Forsøk å hent meldingstråd
  * @param integer $it_id
  * @return inbox_thread_ajax
  */
 public static function get($it_id)
 {
     $t = new self($it_id);
     if (!$t->data_thread) {
         $t->handle_ret(self::RET_ERROR_404);
         return false;
     }
     return $t;
 }