this hack must be a little bit improved for 6.5.1
I see some problems with admin/movethreads.php and admin/prunethreads.php. I dont know how to adapt the query in the section
// Get the list of forums
The beta code:
// Get the list of forums
$query = "
SELECT t1.Bo_Title,t1.Bo_Number,t1.Bo_Cat,t1.Bo_Sorter,t1.Bo_CatName,t1.Bo_Keyword
FROM {$config['tbprefix']}Boards AS t1,
{$config['tbprefix']}Category AS t2
WHERE t1.Bo_Cat = t2.Cat_Entry
ORDER BY t2.Cat_Number,t1.Bo_Sorter
";
your code from this hack:
// Get the list of forums
if ( $user['U_Status'] == "Administrator" ) {
$query = "
SELECT Bo_Title,Bo_Number,Bo_Cat,Bo_Sorter,Bo_CatName,Bo_Keyword
FROM {$config['tbprefix']}Boards
ORDER BY Bo_Cat,Bo_Sorter
";
}
else {
$query = "
SELECT Bo_Title,Bo_Number,Bo_Cat,Bo_Sorter,Bo_CatName,Bo_Keyword
FROM {$config['tbprefix']}Boards AS t1,
{$config['tbprefix']}Moderators AS t2
WHERE t2.Mod_Uid = '$user[U_Number]'
AND t2.Mod_Board = t1.Bo_Keyword
ORDER BY Bo_Cat,Bo_Sorter
";
}