Skip to content
Snippets Groups Projects
Commit 48639a67 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by Jan-Hendrik Willms
Browse files

fixes #3554

Closes #3554

Merge request studip/studip!2441
parent 15300d00
No related branches found
No related tags found
No related merge requests found
...@@ -332,8 +332,8 @@ class Form extends Part ...@@ -332,8 +332,8 @@ class Form extends Part
$callback = $this->getStoringCallback($input); $callback = $this->getStoringCallback($input);
if (is_callable($callback)) { if (is_callable($callback)) {
$stored += $callback($value, $input); $stored += $callback($value, $input);
$all_values[$input->getName()] = $value;
} }
$all_values[$input->getName()] = $value;
} }
foreach ($this->parts as $part) { foreach ($this->parts as $part) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment