3
No its a feature (c) ;)
Actually this it is made to prevent extra charge of the counter by simple updating of page.
Here is the hack:
file: \modules\newbb\viewtopic.php, serach for this lines
if ( empty($topic_lastread[$topic_id]) ) {
$sql = 'UPDATE '.$xoopsDB->prefix('bb_topics').' SET topic_views = topic_views + 1 WHERE topic_id ='. $topic_id;
$xoopsDB->queryF($sql);
}
and chage it for this: Quote:
//if ( empty($topic_lastread[$topic_id]) ) { //not needed
$sql = 'UPDATE '.$xoopsDB->prefix('bb_topics').' SET topic_views = topic_views + 1 WHERE topic_id ='. $topic_id;
$xoopsDB->queryF($sql);
//}
That's all!