Hi there,
I put some time-measuring-code into my php-file and it seems like the following 2 queries from ur hack r causing the execution time of the index.php to be like 10 times higher than with it.
It's about these 2 queries:
PHP Code:
$getnewthread=$DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE lastpost > '$bbuserinfo[lastvisit]'");
$getnewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'");
Could you tell why this is???