aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hackl <hackl@data-quest.de>2025-10-07 13:39:52 +0200
committerThomas Hackl <hackl@data-quest.de>2025-10-07 13:39:52 +0200
commit0e869b89310f91995998a2ac542fe93b83bd5175 (patch)
treec1189af0d572797b6891542fe36ef45265017161
parent49ea02621b49e5eb815b237d0550302c918e04f1 (diff)
Resolve "Falscher Property-Name beim Bearbeiten von Massenmails"
Closes #5919 Merge request studip/studip!4518
-rw-r--r--lib/classes/forms/UserFilterInput.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/forms/UserFilterInput.php b/lib/classes/forms/UserFilterInput.php
index 0a99ea6..4e66b4f 100644
--- a/lib/classes/forms/UserFilterInput.php
+++ b/lib/classes/forms/UserFilterInput.php
@@ -26,7 +26,7 @@ class UserFilterInput extends Input
'id' => $field->getId(),
'attributes' => [
'type' => $class,
- 'typeparam' => $class::$isParamterized ? $field->datafield_id : null,
+ 'typeparam' => $class::$isParameterized ? $field->datafield_id : null,
'compare-operator' => $field->getCompareOperator(),
'value' => $field->getValue()
]