UCDavisLibrary / ucdlib-awards

Platform for accepting, managing, and evaluating submissions to a UC Davis Library awards program

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

application evaluations not showing unless all are complete

spelkey-ucd opened this issue · comments

the scoresArray method is aborting if any application has not been completed. i suspect it just needs to change from return to continue

ie
if ( !$this->applicationIsCompleted($score->applicant_id, $score->judge_id) ) return;

becomes
if ( !$this->applicationIsCompleted($score->applicant_id, $score->judge_id) ) continue;