aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/course/enrolment.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 /app/controllers/course/enrolment.php
parentf2f70529462f10f08d7a0ca57bfb50c80e645fa4 (diff)
replaced getFullname with getFullName, re #3499
Merge request studip/studip!2660
Diffstat (limited to 'app/controllers/course/enrolment.php')
-rw-r--r--app/controllers/course/enrolment.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/course/enrolment.php b/app/controllers/course/enrolment.php
index 275620d..eb4428e 100644
--- a/app/controllers/course/enrolment.php
+++ b/app/controllers/course/enrolment.php
@@ -59,7 +59,7 @@ class Course_EnrolmentController extends AuthenticatedController
if (!$enrolment_info['enrolment_allowed']) {
throw new AccessDeniedException($enrolment_info['description']);
}
- PageLayout::setTitle($course->getFullname() . " - " . _("Veranstaltungsanmeldung"));
+ PageLayout::setTitle($course->getFullName() . " - " . _("Veranstaltungsanmeldung"));
if (Request::submitted('cancel')) {
$this->redirect(URLHelper::getURL('dispatch.php/course/details/', ['sem_id' => $this->course_id]));
}