1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-04 16:06:00 +02:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2020-06-01 11:19:40 +02:00
commit 6f5d640e2e
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -1566,10 +1566,11 @@ function mcp_fork_topic($topic_ids)
// Copy Attachments
if ($row['post_attachment'])
{
$sql = 'SELECT * FROM ' . ATTACHMENTS_TABLE . "
WHERE post_msg_id = {$row['post_id']}
AND topic_id = $topic_id
AND in_message = 0";
$sql = 'SELECT * FROM ' . ATTACHMENTS_TABLE . '
WHERE post_msg_id = ' . (int) $row['post_id'] . '
AND topic_id = ' . (int) $topic_id . '
AND in_message = 0
ORDER BY attach_id ASC';
$result = $db->sql_query($sql);
$sql_ary = array();