aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/forms/SelectedRangesInput.php
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2024-03-14 17:08:26 +0000
committerMoritz Strohm <strohm@data-quest.de>2024-03-14 17:08:26 +0000
commit0fb33e2e8ea3a40bd45f72dc16f65419e82a656c (patch)
treebb3eff329cd9719c20030ab9d09427f755b9f898 /lib/classes/forms/SelectedRangesInput.php
parentf2f70529462f10f08d7a0ca57bfb50c80e645fa4 (diff)
replaced getFullname with getFullName, re #3499
Merge request studip/studip!2660
Diffstat (limited to 'lib/classes/forms/SelectedRangesInput.php')
-rw-r--r--lib/classes/forms/SelectedRangesInput.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/forms/SelectedRangesInput.php b/lib/classes/forms/SelectedRangesInput.php
index 77b2db2..8e17fe8 100644
--- a/lib/classes/forms/SelectedRangesInput.php
+++ b/lib/classes/forms/SelectedRangesInput.php
@@ -20,7 +20,7 @@ class SelectedRangesInput extends Input
foreach ($this->selected_items as $item) {
$item_data = [];
if ($item instanceof \Range) {
- $item_data['name'] = $item->getFullname();
+ $item_data['name'] = $item->getFullName();
$item_data['id'] = $item->getRangeId();
} elseif ($item instanceof \StudipItem) {
$item_data['name'] = $item->getItemName();