Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
*6899* fix for previous commit (thanks Chris)
  • Loading branch information
jnugent committed Sep 18, 2013
1 parent a1b41b7 commit 063895d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/submission/reviewer/ReviewerSubmissionDAO.inc.php
Expand Up @@ -217,8 +217,8 @@ function &getReviewerSubmissionsByReviewerId($reviewerId, $schedConfId, $active
r.reviewer_id = ? AND
r.date_notified IS NOT NULL' .
($active?
' AND r.date_completed IS NULL AND r.declined <> 1 AND (r.cancelled = 0 OR r.cancelled IS NULL) AND a.status = ' . STATUS_QUEUED:
' AND (r.date_completed IS NOT NULL OR r.cancelled = 1 OR r.declined = 1 OR a.status <> ' . STATUS_QUEUED . ')'
' AND r.date_completed IS NULL AND r.declined <> 1 AND (r.cancelled = 0 OR r.cancelled IS NULL) AND p.status = ' . STATUS_QUEUED:
' AND (r.date_completed IS NOT NULL OR r.cancelled = 1 OR r.declined = 1 OR p.status <> ' . STATUS_QUEUED . ')'
),
array(
'title',
Expand Down

0 comments on commit 063895d

Please sign in to comment.