Skip to content

Commit

Permalink
#7304 Remember author and publication lists
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Feb 28, 2023
1 parent 1d9fb25 commit cbeec25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions classes/publication/DAO.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ protected function setAuthors(Publication $publication)
->filterByPublicationIds([$publication->getId()])
->orderBy(\PKP\author\Collector::ORDERBY_SEQUENCE)
->getMany()
->remember()
);
}

Expand Down
1 change: 1 addition & 0 deletions classes/submission/DAO.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ public function fromRow(object $row): Submission
Repo::publication()->getCollector()
->filterBySubmissionIds([$submission->getId()])
->getMany()
->remember()
);

return $submission;
Expand Down

0 comments on commit cbeec25

Please sign in to comment.