diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2024-03-14 17:08:26 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2024-03-14 17:08:26 +0000 |
| commit | 0fb33e2e8ea3a40bd45f72dc16f65419e82a656c (patch) | |
| tree | bb3eff329cd9719c20030ab9d09427f755b9f898 /lib/classes/ConfigurationModel.php | |
| parent | f2f70529462f10f08d7a0ca57bfb50c80e645fa4 (diff) | |
replaced getFullname with getFullName, re #3499
Merge request studip/studip!2660
Diffstat (limited to 'lib/classes/ConfigurationModel.php')
| -rw-r--r-- | lib/classes/ConfigurationModel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/classes/ConfigurationModel.php b/lib/classes/ConfigurationModel.php index 9ce5a38..ad37c87 100644 --- a/lib/classes/ConfigurationModel.php +++ b/lib/classes/ConfigurationModel.php @@ -45,7 +45,7 @@ class ConfigurationModel 'description' => 'missing in table `config`', ]; $data['value'] = $value; - $data['fullname'] = $range->getFullname(); + $data['fullname'] = $range->getFullName(); $allconfigs[] = $data; } @@ -80,7 +80,7 @@ class ConfigurationModel ]; $data['value'] = $range->getConfiguration()->$field; - $data['fullname'] = $range->getFullname(); + $data['fullname'] = $range->getFullName(); return $data; } |
