xjuliox
11-26-2007, 10:07 AM
Hello,
Part of this code does not work with vBulletin. It is support to fetch the latest threads in my board.
<li class="item"><a href="/forum/forumdisplay.php?=<?= $row['postid'] ?>"><span><?= (strlen($row['title']) > 20) ? substr($row['title'], 0, 25) . '...' : $row['title'] ?></span></a></li>
This part here from the code is from PHPBB board.
?=<?= $row['postid'] ?>"><span><?= (strlen($row['title']) > 20) ? substr($row['title'], 0, 25) . '...' : $row['title'] ?></span></a>
What i need is the phpbb part to be converted into vBulletin.
Part of this code does not work with vBulletin. It is support to fetch the latest threads in my board.
<li class="item"><a href="/forum/forumdisplay.php?=<?= $row['postid'] ?>"><span><?= (strlen($row['title']) > 20) ? substr($row['title'], 0, 25) . '...' : $row['title'] ?></span></a></li>
This part here from the code is from PHPBB board.
?=<?= $row['postid'] ?>"><span><?= (strlen($row['title']) > 20) ? substr($row['title'], 0, 25) . '...' : $row['title'] ?></span></a>
What i need is the phpbb part to be converted into vBulletin.