diff --git a/src/contact.php b/src/contact.php index e0e24d9f6..a9cbe6401 100644 --- a/src/contact.php +++ b/src/contact.php @@ -3114,7 +3114,7 @@ private function rights(PaperInfo $prow) { } if ($this->_capabilities !== null && ($this->_capabilities["@av{$prow->paperId}"] ?? null) - && !$isPC + && !$allow_pc_broad && $ci->review_status === 0) { $ci->view_conflict_type = CONFLICT_AUTHOR; } diff --git a/src/reviewvalues.php b/src/reviewvalues.php index ff506a80a..dc3b0cd0c 100644 --- a/src/reviewvalues.php +++ b/src/reviewvalues.php @@ -567,7 +567,7 @@ function check_and_save(Contact $user, ?PaperInfo $prow, ?ReviewInfo $rrow = nul if (!$prow) { if (($pid = $this->req_pid()) === null) { $this->rmsg("paperId", $this->conf->_("<0>{Submission} ID required"), self::ERROR); - $this->rmsg("paperId", $this->conf->_("<5>This review form doesn’t contain a valid {submission} ID. Enter the {submission} number in the right place and try again."), self::INFORM); + $this->rmsg("paperId", $this->conf->_("<0>Enter the {submission} number in the right place and try again."), self::INFORM); return false; } $prow = $user->paper_by_id($pid);