-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pkp#1195 from bozana/master
pkp/pkp-lib#2195 set double-blind when review method is missing
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE data SYSTEM "../../../lib/pkp/dtd/xmlData.dtd"> | ||
|
||
<!-- | ||
* 3.0.0_review_method.xml | ||
* | ||
* Copyright (c) 2014-2016 Simon Fraser University Library | ||
* Copyright (c) 2003-2016 John Willinsky | ||
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. | ||
* | ||
* 3.0.0.0 review_method update. | ||
--> | ||
<data> | ||
<sql><!-- #2195 set review_method = 2 (SUBMISSION_REVIEW_METHOD_DOUBLEBLIND) where review_method = 0 i.e. for those migrated from OJS 2.4.x --> | ||
<query>UPDATE review_assignments SET review_method = 2 WHERE review_method = 0</query> | ||
</sql> | ||
</data> | ||
|