ich habe mein SubSilver mit 2 MOS's erweiter.
Seitdem taucht (beim Hinzufügen eines neuen Forums) folgende Fehlermeldung auf:
Couldn't insert row in forums table
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 '', 1', 'SORT_FPDATE', 0, 0, 0, 0, 0, 1, 1, 3, 3, 1, 1)' at line
INSERT INTO phpbb_forums (forum_id, forum_name, cat_id, forum_desc, forum_order, forum_status, forum_sort, forum_notify, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate) VALUES ('41', 'testforum', 10, '', 30, 0', 1', 'SORT_FPDATE', 0, 0, 0, 0, 0, 1, 1, 3, 3, 1, 1)
Line : 416
File : admin_forums.php
Das ist der dazugehörige Code:
Code: Alles auswählen
VALUES ('" . $next_id . "', '" . str_replace("\'", "''", $HTTP_POST_VARS['forumname']) . "', " . intval($HTTP_POST_VARS[POST_CAT_URL]) . ", '" . str_replace("\'", "''", $HTTP_POST_VARS['forumdesc']) . "', $next_order, " . intval($HTTP_POST_VARS['forumstatus']) . "', " .intval($HTTP_POST_VARS['notify_enable']) . "', '" . str_replace("\'", "''", $HTTP_POST_VARS['forumsort']) . "', " . intval($HTTP_POST_VARS['prune_enable']) . $value_sql . ")";