Hey there,
We're using the
Steps to Reproduce
The Exception
Location
There is an SQL query located in
We're using the
SV\MultipleAccountToThread
AddOn and it throws an error when merging the threads.Steps to Reproduce
- Open the forum where the 2 threads are located.
- Tick the edit box (located far right from the thread titles)
- Moderation options will pop up at the bottom - click Choose Action
- Select Merge Threads
- Click Go
- Select destination thread
- Leave redirection at the default of Do not leave a redirect
- Select to notify thread starter and provide reason (this is optional)
- Click Merge
The Exception
Gyazo
gyazo.com
Location
There is an SQL query located in
/src/addons/SV/MultipleAccountToThread/XF/Service/Thread/Merger.php
at line 24 which is causing the issue. It looks for table_id
not present in the table.
PHP:
$oldReportDataIds = $db->fetchAllColumn("
SELECT report_data_id
FROM xf_sv_multiple_account_report_data
WHERE thread_id IN ({$quotedThreadIds})
ORDER BY report_data_id ASC
");