diff options
| author | Rasmus Fuhse <fuhse@data-quest.de> | 2025-08-13 08:36:28 +0000 |
|---|---|---|
| committer | Rasmus Fuhse <fuhse@data-quest.de> | 2025-08-13 08:36:28 +0000 |
| commit | 9be6424ff25405ab92c197f3aeb096859c53760d (patch) | |
| tree | 09427c8839789cd09afb374d6fa2fe32b4105d7a /lib/classes/forms/RangeInput.php | |
| parent | 9513f3e0c667a42cf577e42f3ca08f9812e599f8 (diff) | |
Resolve "Verwaltung der Studiengruppen fehlerhaft"
Closes #5805
Merge request studip/studip!4428
Diffstat (limited to 'lib/classes/forms/RangeInput.php')
| -rw-r--r-- | lib/classes/forms/RangeInput.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/forms/RangeInput.php b/lib/classes/forms/RangeInput.php index 14334c7..c01c005 100644 --- a/lib/classes/forms/RangeInput.php +++ b/lib/classes/forms/RangeInput.php @@ -9,7 +9,7 @@ class RangeInput extends Input $template = $GLOBALS['template_factory']->open('forms/range_input'); $template->title = $this->title; $template->name = $this->name; - $template->value = $this->value; + $template->value = $this->getValue(); $template->id = md5(uniqid()); $template->min = $this->attributes['min'] ?? null; $template->max = $this->attributes['max'] ?? null; |
