Excellent
I change this line of the code;
Code:
$latest_posts .= '<tr><td>'.$count.'</td><td><a href="showthread.php?t='.$post['threadid'].'&goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,30).'...</a></td><td><a href="member.php?u='.$post['lastposterid'].'">'.$post['lastposter'].'</a></td><td><a href="showthread.php?t='.$post['threadid'].'"><img src="images/buttons/collapse_40b.png" alt="" /></a></td></tr>';
to;
Code:
$latest_posts .= '<tr><td>'.$count.'</td><td><a href="showthread.php?t='.$post['threadid'].'&goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,100).'...</a></td><td><a href="member.php?u='.$post['lastposterid'].'">'.$post['lastposter'].'</a></td><td><a href="showthread.php?t='.$post['threadid'].'"><img src="images/buttons/collapse_40b.png" alt="" /></a></td></tr>';
It increases the 30 character limit.
Thanks again,
-Patrick