- Status: Moved to Github
when editing forum options in the acp
got the below in support log
no 'record_id' in that table
SELECT record_id FROM ibf_cms_custom_database_5
AS cms_custom_database_5
WHERE category_id=94
Unknown column 'record_id' in 'SELECT'
query appears to be in movecommets.php
if ( isset( $data['categoryId'] ) )
{
$where = array( Db::i()->in( 'comment_record_id', iterator_to_array( Db::i()->select( 'record_id', "cms_custom_database_{$data['databaseId']}", array( "category_id=?", $data['categoryId'] ) ) ) ) );
}
else
Recommended Comments