Topic: Another bug with sqlite :(
Another bug with sqlite.
when you log in, the bug is not shown, when you logout, you can find.
the bug is topic name is shown as 0 not a string name.
to avoid this, change like this.
in viewtopic.php(line 106) :
$result = $db->query('SELECT t.subject, t.closed, t.sticky, t.num_replies, f.id,
f.forum_name, f.moderators, f.closed AS forum_closed, f.admmod_only, "0"
FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON
t.forum_id=f.id WHERE t.id='.$id.' AND t.moved_to IS NULL') or error('Unable to
fetch topic info', __FILE__, __LINE__, $db->error());
difference is between 0 and "0"