Quote:
Originally Posted by Disi
Yeah is there a 3.5 Port already 
|
In the part of this hack that modifies the forum index page, the original instructions tell you to add this...
Quote:
$channels = $DB_site->query("
SELECT *
FROM `irc_channel`
");
while ($channel = $DB_site->fetch_array($channels))
|
For 3.5, it should be changed to this...
Quote:
$channels = $db->query_read("
SELECT *
FROM `irc_channel`
");
while ($channel = $db->fetch_array($channels))
|
note: I just included the first couple of lines from the code he tells you to add to index.php because that's the only part that changes. Everything else seems to work fine.