To usuń to:
$dp23rmenu .= "<br /><div class='borderwrap'><div class='maintitle'>Ostatnie posty</div>";
$dp23rmenu .= "<table class='ipbtable' cellspacing='1' width='18%'><tr><th width='120px'>W temacie</th> <th width='65px'>Autor</th> <th width='65px'>Data</th></tr>";
$this->ipsclass->DB->simple_construct( array(
'select' => 'p.pid, p.author_name, p.post_date',
'from' => array( 'posts' => 'p'),
'where' => 'queued = 0',
'add_join' => array( 0 => array( 'select' => 't.tid, t.title, t.last_poster_id, t.starter_name',
'from' => array( 'topics' => 't' ),
'where' => 't.tid=p.topic_id AND approved = 1',
'type' => 'inner' ) ),
'order' => 'pid DESC',
'limit' => array( 0, $IlePostow )
) );
$this->ipsclass->DB->simple_exec();
while ($rowrm2 = $this->ipsclass->DB->fetch_row())
{
$data_rm = $this->ipsclass->get_date( $rowrm2['post_date'] , 'LONG', 0 );
$dp23rmenu .= "<tr><td class='row1'> <a href=\"{$this->ipsclass->vars['board_url']}/index.php?showtopic={$rowrm2['tid']}&view=findpost&p={$rowrm2['pid']}\">" . $this->ipsclass->txt_truncate($rowrm2['title'], $TnijNazwe ) . "</a></td> \n <td class='row2'><a href=\"{$this->ipsclass->vars['board_url']}/index.php?showuser=".$rowrm2['last_poster_id']."\">".$rowrm2['author_name']. "</a></td>\n <td class='row2'>{$data_rm}</td> </tr>";
}