Skip to content

Commit

Permalink
pkp/pkp-lib#7885 Added missing LOCKSS state inProgress
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasraoni authored and asmecher committed May 10, 2022
1 parent fcfc3e9 commit 26d35b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions classes/DepositPackage.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -640,10 +640,13 @@ public function updateDepositStatus() {
case '':
// do nothing.
break;
// WARNING: The usage of 'received' is unknown and it may be removed in the future
case 'received':
$this->_deposit->setLockssReceivedStatus();
break;
// WARNING: The usage of 'syncing' is unknown and it may be removed in the future
case 'syncing':
case 'inProgress':
$this->_deposit->setLockssSyncingStatus();
break;
case 'agreement':
Expand Down
4 changes: 2 additions & 2 deletions version.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<version>
<application>pln</application>
<type>plugins.generic</type>
<release>2.0.4.2</release><!-- 2.0.4.x is for ojs v.3.3 -->
<date>2020-07-21</date>
<release>2.0.4.3</release><!-- 2.0.4.x is for OJS v.3.3 -->
<date>2022-05-10</date>
<lazy-load>1</lazy-load>
<sitewide>0</sitewide>
<class>PLNPlugin</class>
Expand Down

0 comments on commit 26d35b4

Please sign in to comment.