And yes, my ubbthreads.php file does include:<br /><br />[]<br /> // ---------------------<br /> // Grab the tablewrapper<br /> list($tbopen,$tbclose) = $html -> table_wrapper();<br /><br /> $sth = $dbh->do_query("<br /> SELECT COUNT(B_Topic), SUM(B_Counter) <br /> FROM {$config['tbprefix']}Posts<br /> GROUP BY B_Topic<br /> ORDER BY B_Topic<br /> ");<br /> list($num_replies, $num_threads, $num_thread_views) = array(0, 0, 0);<br /> $num_rows = $dbh->total_rows($sth);<br /> if ($num_rows >= 1) {<br /> list($num_replies) = $dbh->mysql_fetch_row($sth);<br /> if ($num_rows >= 2) {<br /> list($num_threads, $num_thread_views) = $dbh->mysql_fetch_row($sth);<br /> }<br /> }<br /> $dbh->finish_sth($sth);<br /> $num_posts = $num_threads + $num_replies;<br />[/]