admin_ug_auth.php
1) suche nach
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0
, auth_globalannounce = 0WHERE group_id = $group_id";
und ersetzte dies mit
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0, auth_globalannounce = 0
WHERE group_id = $group_id";
2) suche nach
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0
, auth_globalannounce = 0WHERE group_id = $group_id";
und ersetze dies mit
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0, auth_globalannounce = 0
WHERE group_id = $group_id";
Ich habe mir jetzt den anderen Code nicht weiter angeschaut, aber damit dürfte die von dir erwähnte Fehlermeldung jedenfalls verschwinden.