Hi !!
This code is for peoples who do not want the "Views.." (Read x times... ) to be increased by 1 if the user has already replied to a specific thread ...
Its nice for warez boards

In the file display.php, look for the following line...
$request = mysql_query("UPDATE {$db_prefix}topics SET numViews=numViews+1 WHERE ID_TOPIC=$viewnum");
Put the 2 following line right above the $request line ...
$reqviews = mysql_query("SELECT posterName FROM {$db_prefix}messages WHERE (posterName='$username' AND ID_TOPIC=$viewnum) LIMIT 1");
if (mysql_num_rows($reqviews)==0)
The others mods are coming ...
