Bardzo na szybko:
$jakas_zmienna = "<marquee>";
$this->ipsclass->DB->simple_construct( array(
'select' => 'tid, title, last_post',
'from' => 'topics',
'where' => 'forum_id = 1 AND approved = 1',
'order' => 'start_date DESC',
'limit' => array( 0, 10 )
) );
$this->ipsclass->DB->simple_exec();
while ($rowrm = $this->ipsclass->DB->fetch_row())
{
$jakas_zmienna .= "<a href=\"{$this->ipsclass->vars['board_url']}/index.php?showtopic=".$rowrm['tid']."\">".$this->ipsclass->txt_truncate($rowrm['title'], 50 )."</a> -- ";
}
$jakas_zmienna .= "</marquee>";
$this->ipsclass->skin['_wrapper'] = str_replace( "<% DOSKINA %>" , $jakas_zmienna , $this->ipsclass->skin['_wrapper']);
Potem we wrapperze wstaw:
<% DOSKINA %>
Uwagi:
forum_id = 1 - wybierz ID forum.
Chyba zadziała.