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/models/CourseExDate.class.php | |
| parent | f2f70529462f10f08d7a0ca57bfb50c80e645fa4 (diff) | |
replaced getFullname with getFullName, re #3499
Merge request studip/studip!2660
Diffstat (limited to 'lib/models/CourseExDate.class.php')
| -rw-r--r-- | lib/models/CourseExDate.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/models/CourseExDate.class.php b/lib/models/CourseExDate.class.php index ce50e31..2d3afea 100644 --- a/lib/models/CourseExDate.class.php +++ b/lib/models/CourseExDate.class.php @@ -129,7 +129,7 @@ class CourseExDate extends SimpleORMap implements PrivacyObject, Event * 'verbose' are supported by now) * @return String containing the full name of this date. */ - public function getFullname($format = 'default') + public function getFullName($format = 'default') { if (!$this->date || !in_array($format, ['default', 'verbose'])) { return ''; @@ -337,7 +337,7 @@ class CourseExDate extends SimpleORMap implements PrivacyObject, Event { $descriptions = []; if (count($this->dozenten) > 0) { - $descriptions[_('Durchführende Lehrende')] = implode(', ', $this->dozenten->getFullname()); + $descriptions[_('Durchführende Lehrende')] = implode(', ', $this->dozenten->getFullName()); } if (count($this->statusgruppen) > 0) { $descriptions[_('Beteiligte Gruppen')] = implode(', ', $this->statusgruppen->getValue('name')); |
