Error in html syntax in phpbb.module?
Posted by alexic on January 26, 2008 at 7:58am
Hello,
I noticed on my site that there was a link that was spreaded all over the page!
So i looked at phpbb.module and i found an error:
at about line 700
<?php
// New topics since last visit
$query = "SELECT COUNT(*) FROM {$phpbbcfg['db_topics']} LEFT JOIN {$phpbbcfg['db_users']} ON {$phpbbcfg['db_topics']}.topic_time > {$phpbbcfg['db_users']}.user_lastvisit WHERE user_id = ". $user->uid;
$res = db_query($query);
$row = db_fetch_array($res);
$url = $phpbbcfg['path_abs'].'search.php?search_id=newposts&sr=topics';