commit 6af20b9945c5312f6f4e8559ce57ba4b61d421df parent 5ae548ee59a199fb81c47d8f400ddfb1ac6cb53b Author: Jan Dankert <devnull@localhost> Date: Thu, 23 Aug 2018 01:06:30 +0200 Bugfix: Feldname für Radioboxen. Diffstat:
modules/template-engine/components/html/radiobox/Radiobox.class.php | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/template-engine/components/html/radiobox/Radiobox.class.php b/modules/template-engine/components/html/radiobox/Radiobox.class.php @@ -26,7 +26,7 @@ class RadioboxComponent extends Component else $value = '$'.$this->varname($this->name); - echo '<?php component_radio_box('.$value.',$'.$this->varname($this->list).','.$value.') ?>'; + echo '<?php component_radio_box('.$this->value($this->name).',$'.$this->varname($this->list).','.$value.') ?>'; } }