Fix missing HASHIDS_SALT setting in app setup command, closes #724

This commit is contained in:
Dane Everitt
2017-11-05 12:58:25 -06:00
parent 4898d4f9d2
commit a4cf06ba77
5 changed files with 8 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ class ScheduleCreationFormRequest extends ServerFormRequest
{
$restructured = [];
foreach (array_get($this->all(), 'tasks', []) as $key => $values) {
for ($i = 0; $i < count($values); $i++) {
for ($i = 0; $i < count($values); ++$i) {
$restructured[$i][$key] = $values[$i];
}
}