diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-12-12 10:51:59 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2023-12-14 12:09:07 +0100 |
| commit | cd4f2f68f06147c68e789ae464dc3fa14567d2b5 (patch) | |
| tree | 52c703126470e2c9fcd070da8d353d6a6d169a76 /templates/forms | |
| parent | f00d54a56825840d142ee5903265f6d652f9e4fc (diff) | |
fixes #3550
Closes #3550
Merge request studip/studip!2438
Diffstat (limited to 'templates/forms')
| -rw-r--r-- | templates/forms/datetimepicker_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/i18n_formatted_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/i18n_text_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/i18n_textarea_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/multiselect_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/quicksearch_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/select_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/text_input.php | 2 | ||||
| -rw-r--r-- | templates/forms/wysiwyg_input.php | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/templates/forms/datetimepicker_input.php b/templates/forms/datetimepicker_input.php index f2d6b92..44c6d21 100644 --- a/templates/forms/datetimepicker_input.php +++ b/templates/forms/datetimepicker_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/i18n_formatted_input.php b/templates/forms/i18n_formatted_input.php index 425b1ae..bef667c 100644 --- a/templates/forms/i18n_formatted_input.php +++ b/templates/forms/i18n_formatted_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/i18n_text_input.php b/templates/forms/i18n_text_input.php index 5e99cd1..b518962 100644 --- a/templates/forms/i18n_text_input.php +++ b/templates/forms/i18n_text_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/i18n_textarea_input.php b/templates/forms/i18n_textarea_input.php index d9b2ff3..01110c6 100644 --- a/templates/forms/i18n_textarea_input.php +++ b/templates/forms/i18n_textarea_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/multiselect_input.php b/templates/forms/multiselect_input.php index cd9aec6..a01ff50 100644 --- a/templates/forms/multiselect_input.php +++ b/templates/forms/multiselect_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/quicksearch_input.php b/templates/forms/quicksearch_input.php index 5a8fadd..6fbaff1 100644 --- a/templates/forms/quicksearch_input.php +++ b/templates/forms/quicksearch_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/select_input.php b/templates/forms/select_input.php index 64f8140..07a03ca 100644 --- a/templates/forms/select_input.php +++ b/templates/forms/select_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/text_input.php b/templates/forms/text_input.php index 546a125..ae93758 100644 --- a/templates/forms/text_input.php +++ b/templates/forms/text_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> diff --git a/templates/forms/wysiwyg_input.php b/templates/forms/wysiwyg_input.php index 989bb5c..2fd0c90 100644 --- a/templates/forms/wysiwyg_input.php +++ b/templates/forms/wysiwyg_input.php @@ -1,4 +1,4 @@ -<div class="formpart"> +<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>"> <label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>"> <span class="textlabel"> <?= htmlReady($this->title) ?> |
