From d00b992300fffe28a6c0e5554fb7dff7d7f1ab4c Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+studip@gmail.com> Date: Tue, 21 Jun 2022 11:41:28 +0000 Subject: [PATCH] add user_id column to query, fixes #1194 Closes #1194 Merge request studip/studip!708 --- lib/classes/ForumEntry.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/classes/ForumEntry.php b/lib/classes/ForumEntry.php index 7bfbd18d9c9..f1a8ca5c78a 100644 --- a/lib/classes/ForumEntry.php +++ b/lib/classes/ForumEntry.php @@ -1242,12 +1242,11 @@ class ForumEntry implements PrivacyObject $stmt->execute([$seminar_id, $seminar_id]); if ($stmt->fetchColumn() == 0) { $stmt = DBManager::get()->prepare("INSERT INTO forum_entries - (topic_id, seminar_id, name, mkdate, chdate, lft, rgt, depth) - VALUES (?, ?, 'Ãœbersicht', UNIX_TIMESTAMP(), UNIX_TIMESTAMP(), 0, 1, 0)"); + (topic_id, seminar_id, user_id, name, mkdate, chdate, lft, rgt, depth) + VALUES (?, ?, '', 'Ãœbersicht', UNIX_TIMESTAMP(), UNIX_TIMESTAMP(), 0, 1, 0)"); $stmt->execute([$seminar_id, $seminar_id]); } - // make sure, that the category "Allgemein" exists $stmt = DBManager::get()->prepare("INSERT IGNORE INTO forum_categories (category_id, seminar_id, entry_name) VALUES (?, ?, ?)"); -- GitLab