Wpisałem to w class_post_new
forum to numer 3 ale w nim mam jeszcze kategorie i subfora
//-----------------------------------------
// Build the master array
//-----------------------------------------
$topic_prefix = ( $this->forum['id'] == 3 ) ? '[' . date("d.m.Y") . '] ' : '';
$this->topic = array(
'title' => $topic_prefix . $this->ipsclass->input['TopicTitle'],
'description' => $this->ipsclass->input['TopicDesc'] ,
'state' => $state,
'posts' => 0,
'starter_id' => $this->ipsclass->member['id'],
'starter_name' => $this->ipsclass->member['id'] ? $this->ipsclass->member['members_display_name'] : $this->ipsclass->input['UserName'],
'start_date' => time(),
'last_poster_id' => $this->ipsclass->member['id'],
'last_poster_name' => $this->ipsclass->member['id'] ? $this->ipsclass->member['members_display_name'] : $this->ipsclass->input['UserName'],
'last_post' => time(),
'icon_id' => intval($this->ipsclass->input['iconid']),
'author_mode' => $this->ipsclass->member['id'] ? 1 : 0,
'poll_state' => ( count( $this->poll_questions ) AND $this->can_add_poll ) ? 1 : 0,
'last_vote' => 0,
'views' => 0,
'forum_id' => $this->forum['id'],
'approved' => ( $this->obj['moderate'] == 1 || $this->obj['moderate'] == 2 ) ? 0 : 1,
'pinned' => $pinned,
'topic_open_time' => intval( $this->times['open'] ),
'topic_close_time' => intval( $this->times['close'] ),
);