diff --git a/extension/qfq/qfq/BuildFormBootstrap.php b/extension/qfq/qfq/BuildFormBootstrap.php index 4c3949b6b9b532ba3f028717552b5cfe62ec5be6..0381ce31e6918ac8bc00e04b0ac88345bc3ee516 100644 --- a/extension/qfq/qfq/BuildFormBootstrap.php +++ b/extension/qfq/qfq/BuildFormBootstrap.php @@ -462,13 +462,12 @@ class BuildFormBootstrap extends AbstractBuildForm { // Button Save at bottom of form - only if there is a button text given. if ($this->formSpec[F_SUBMIT_BUTTON_TEXT] !== '') { - // Default setzen: $this->fillWrapLabelInputNote($this->formSpec[F_BS_LABEL_COLUMNS], $this->formSpec[F_BS_INPUT_COLUMNS], $this->formSpec[F_BS_NOTE_COLUMNS]); $buttonText = $this->formSpec[F_SUBMIT_BUTTON_TEXT]; - $htmlElement = $this->buildButtonCode('save-button', '', $buttonText, '', '', $this->formSpec[F_BUTTON_ON_CHANGE_CLASS]); + $htmlElement = $this->buildButtonCode('save-button', $buttonText, $buttonText, '', '', $this->formSpec[F_BUTTON_ON_CHANGE_CLASS], 'btn btn-default'); $html .= $this->wrapItem(WRAP_SETUP_LABEL, ''); $html .= $this->wrapItem(WRAP_SETUP_INPUT, $htmlElement);