wenn ich einen User über Begugnisse -> Benutzerebene zum Administrator mache, bekomme ich folgende Fehlermeldung.
Code: Alles auswählen
Couldn't delete auth access info
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND auth_mod = 0' at line 3
DELETE FROM forum_auth_access WHERE group_id = AND auth_mod = 0
Line : 180
File : admin_ug_auth.phpCode: Alles auswählen
$sql = "DELETE FROM " . AUTH_ACCESS_TABLE . "
WHERE group_id = $group_id
AND auth_mod = 0";
if ( !($result = $db->sql_query($sql)) )
{
[b]Zeile 180 message_die(GENERAL_ERROR, "Couldn't delete auth access info", "", __LINE__, __FILE__, $sql);[/b]
}Momentan nutze ich die Version: 2.0.16. Dies ist auch eine Neuinstallation
Gruß,
Sirius2002