When enabling the plugin on OJS 3.3 I get this error on error.log. Tables are created, but Object for review tab keeps spinning, and articles page all go error 500.
PHP Fatal error: Uncaught PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'submission_id' in 'where clause'
Because the core plugin DAO class is trying to do:
SELECT * FROM objects_for_review WHERE submission_id = ?
but there is no submission_id in that table. It's called context_id.
When enabling the plugin on OJS 3.3 I get this error on error.log. Tables are created, but Object for review tab keeps spinning, and articles page all go error 500.