No problem. You can also add something like this to fix that problem...
PHP Code:
$news3 = $db->query_first('SELECT title,threadid,views,replycount,postusername,postuserid,dateline FROM ' . TABLE_PREFIX . 'thread WHERE 1 AND forumid = 34 ORDER BY dateline DESC LIMIT 2 , 1');
if (mysql_num_rows($news3) != 0) {
$news3_title = "<a href=\"forums/showthread.php?" . $vbulletin->session->vars['sessionurl'] . "t=$news3[threadid]\">$news3[title]</a>";
$news3_readmore = "<a href=\"forums/showthread.php?" . $vbulletin->session->vars['sessionurl'] . "t=$news3[threadid]\">[Read More]</a>";
$news3_comment = "<a href=\"forums/newreply.php?do=newreply&noquote=1&" . $vbulletin->session->vars['sessionurl'] . "t=$news3[threadid]\">[Post Comment]</a>";
$news3_replies = "$news3[replycount]";
$news3_views = "$news3[views]";
$news3_post = $db->query_first('SELECT pagetext FROM ' . TABLE_PREFIX . 'post WHERE 1 AND threadid = ' . $news3[threadid] . ' ORDER BY dateline ASC LIMIT 0 , 1');
$news3_postfull = "$news3_post[pagetext]";
$news3_postshort = substr($news3_post[pagetext],0,$postchars);
$news3_date = vbdate($vbulletin->options['dateformat'], $news3['dateline']);
$news3_time = vbdate($vbulletin->options['timeformat'], $news3['dateline']);
} else { echo "No news is good news?"; }