Skip to content

Commit

Permalink
Admissions: fix username and password missing from re-sent Acceptance…
Browse files Browse the repository at this point in the history
… Email
  • Loading branch information
SKuipers committed Jun 7, 2024
1 parent f0f1ad6 commit 0835f65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ v27.0.01
Admissions: fixed submission emails and acceptance emails not sending as expected
Admissions: fixed required field logic checking in Form Builder
Admissions: fixed "Do not include a second parent" being accidentally checked by default
Admissions: fixed username and password missing from re-sent Acceptance Email
Attendance: fixed handling of Count Class as School setting in Students Not Onsite/Students Not Present reports
Messenger: fixed error redirect for New Message sending users to a non-existing page

Expand Down
2 changes: 1 addition & 1 deletion modules/Admissions/applications_manage_editProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
// Setup which processes are going to run, based on user-selected checkboxes
foreach ($processes as $processName => $process) {
$formBuilder->addConfig(['mode' => 'process', $processName.'Enabled' => $process['enabled'] ?? 'N']);
$formData->setResults($process['data'] ?? []);
$formData->addResults($process['data'] ?? []);
}

// Run any edit-related processes
Expand Down

0 comments on commit 0835f65

Please sign in to comment.