Ich versuche die Befugnisse für die einzelnen Foren zu setzen.
Dabei ist es egal, ob ich im erweiterten oder einfachen Modus die
Sache ändern will...
Folgende Fehlermeldung:
Code: Alles auswählen
Could not update auth table
DEBUG MODE
SQL Error : 1054 Unknown column 'auth_globalannounce' in 'field list'
UPDATE trollbrut_phpbb_forums SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 1, auth_sticky = 1, auth_announce = 3, auth_globalannounce = 0, auth_vote = 1, auth_pollcreate = 1 WHERE forum_id = 1
Line : 139
File : /kunden/berzhahn.info/user/trollbrut/forum2/admin/admin_forumauth.php
(Zeile 131-151)
Code: Alles auswählen
$sql = "UPDATE " . FORUMS_TABLE . " SET $sql WHERE forum_id = $forum_id";
}
if ( $sql != '' )
{
if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update auth table', '', __LINE__, __FILE__, $sql);
}
}
$forum_sql = '';
$adv = 0;
}
$template->assign_vars(array(
'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("admin_forumauth.$phpEx?" . POST_FORUM_URL . "=$forum_id") . '">')
);
$message = $lang['Forum_auth_updated'] . '<br /><br />' . sprintf($lang['Click_return_forumauth'], '<a href="' . append_sid("admin_forumauth.$phpEx") . '">', "</a>");
message_die(GENERAL_MESSAGE, $message);