Skip to content

Commit b98d788

Browse files
authored
fix previous commit syntax mistake
1 parent 4d5b49e commit b98d788

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

modules/candidate_list/php/candidatelistrowprovisioner.class.inc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@ class CandidateListRowProvisioner extends \LORIS\Data\Provisioners\DBRowProvisio
122122
throw new \Exception("Unhandled DoB format: $this->dobFormat");
123123
}
124124
}
125-
TranslateParticipantStatusOptions
126-
$row['ParticipantStatus'] = dgettext(
127-
"participant_status_options",
128-
$row['ParticipantStatus'],
129-
);
130125

131126
if (isset($row['Cohort'])) {
132127
$cohorts = explode(',', $row['Cohort']);
@@ -141,6 +136,10 @@ TranslateParticipantStatusOptions
141136

142137
$row['EntityType'] = dgettext("candidate", $row['EntityType']);
143138

139+
$row['ParticipantStatus'] = dgettext(
140+
"participant_status_options",
141+
$row['ParticipantStatus'],
142+
);
144143

145144
unset($row['RegistrationCenterID']);
146145
unset($row['RegistrationProjectID']);

0 commit comments

Comments
 (0)