Skip to content

Commit

Permalink
WIP: pkp-lib code review fixes + extras
Browse files Browse the repository at this point in the history
  • Loading branch information
ewhanson committed Apr 16, 2024
1 parent 6040b1a commit a840f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jobs/orcid/DepositOrcidSubmission.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function handle()
{
// If the application is set to sandbox mode, it will not reach out to external services
if (Config::getVar('general', 'sandbox', false)) {
error_log('Application is set to sandbox mode and will not interact with the ORCID service');
$this->fail('Application is set to sandbox mode and will not interact with the ORCID service');
return;
}

Expand Down
2 changes: 1 addition & 1 deletion jobs/orcid/PublishReviewerWorkToOrcid.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function handle()
{
// If the application is set to sandbox mode, it will not reach out to external services
if (Config::getVar('general', 'sandbox', false)) {
error_log('Application is set to sandbox mode and will not interact with the ORCID service');
$this->fail('Application is set to sandbox mode and will not interact with the ORCID service');
return;
}

Expand Down

0 comments on commit a840f36

Please sign in to comment.