Skip to content

Commit

Permalink
pkp/pkp-lib#7495 Temporarly enable enable_new_submission_listing for …
Browse files Browse the repository at this point in the history
…OJS, until OMP&OPS catch up
  • Loading branch information
jardakotesovec committed Oct 2, 2024
1 parent f82877e commit 07ac277
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit 07ac277

Please sign in to comment.