diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-12-12 10:47:06 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2023-12-14 12:09:32 +0100 |
| commit | a7ff3e9218ff4c6ec9291dffe1eb118fd0b4a03f (patch) | |
| tree | f8b03f371fcce4a242d5bdb8ba40d509abf193d1 /lib/classes/forms/Form.php | |
| parent | cd4f2f68f06147c68e789ae464dc3fa14567d2b5 (diff) | |
fixes #3554
Closes #3554
Merge request studip/studip!2441
Diffstat (limited to 'lib/classes/forms/Form.php')
| -rw-r--r-- | lib/classes/forms/Form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/forms/Form.php b/lib/classes/forms/Form.php index e5c5b10..49713b7 100644 --- a/lib/classes/forms/Form.php +++ b/lib/classes/forms/Form.php @@ -332,8 +332,8 @@ class Form extends Part $callback = $this->getStoringCallback($input); if (is_callable($callback)) { $stored += $callback($value, $input); - $all_values[$input->getName()] = $value; } + $all_values[$input->getName()] = $value; } foreach ($this->parts as $part) { |
