From 07ac277dc2fe98f72d160744bfe87cd51d5877d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarda=20Kot=C4=9B=C5=A1ovec?= Date: Wed, 2 Oct 2024 11:56:29 +0200 Subject: [PATCH] pkp/pkp-lib#7495 Temporarly enable enable_new_submission_listing for OJS, until OMP&OPS catch up --- index.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/index.php b/index.php index ecab27db5a2..f2fa0c36e65 100644 --- a/index.php +++ b/index.php @@ -12,10 +12,19 @@ */ use APP\core\Application; +use PKP\config\Config; // Initialize global environment define('INDEX_FILE_LOCATION', __FILE__); require_once './lib/pkp/includes/bootstrap.php'; +// Temporarly enable enable_new_submission_listing for OJS, until OMP&OPS catch up +// Its still possible to disable it with explicitely setting it to 'Off' +if(Config::getVar('features', 'enable_new_submission_listing') === null) { + $configData = & Config::getData(); + $configData['features']['enable_new_submission_listing'] = true; +} + + // Serve the request Application::get()->execute();