Double blind review issue

Hi @asmecher!
Yes I do, I cleared the cache both with OJS in the “administrator” area and by going to delete the files with a file manager via FTP. And now I don’t know what else to do…

Bye
Tiziano

Hi @Tiziano,

I’m afraid I can’t reproduce the problem, so probably the best thing to do is use error_log statements to record what the PHP code is doing, run through an assignment, and see what gets logged. In particular you’ll be interested in how the defaultReviewMode setting is getting stored with the review assigment when a new one is created. That’s in lib/pkp/controllers/grid/users/reviewer/form/ReviewerForm.inc.php in the initData function:

// Set default review method.
$reviewMethod = $context->getSetting('defaultReviewMode');
if (!$reviewMethod) $reviewMethod = SUBMISSION_REVIEW_METHOD_BLIND;

Regards,
Alec Smecher
Public Knowledge Project Team