Hello Niels,
I just wanna report a little bug in the extra permissions hack - if its one, i'm not sure. Per definition: no, but your part_1.txt is in one line not correctly edited.
includes/functions_admin.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT forum_id, forum_name
FROM " . FORUMS_TABLE . "
#
#-----[ IN-LINE FIND ]------------------------------------------
#
FROM " . FORUMS_TABLE . "
#
#-----[ IN-LINE AFTER ADD ]------------------------------------------
#
WHERE forum_id > 0
So I made this:
FROM " . FORUMS_TABLE . "WHERE forum_id > 0 (WRONG)
... and a Debug was the consequence when I tried to split a thread in 2 new themes in forum mod-status.
So it's right:
FROM " . FORUMS_TABLE . " WHERE forum_id > 0 (RIGHT)
There must be a gap between " and WHERE.
Lg
kuco

