Skip to content

Commit

Permalink
pkp/pkp-lib#7495 Enable new submission listing by default for OMP
Browse files Browse the repository at this point in the history
  • Loading branch information
jardakotesovec committed Oct 17, 2024
1 parent c3f4979 commit 1a3fc69
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config.TEMPLATE.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -621,4 +621,4 @@

[features]

enable_new_submission_listing = Off
enable_new_submission_listing = On
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 1a3fc69

Please sign in to comment.