aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/course/wizard.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/wizard.php
parentf2f70529462f10f08d7a0ca57bfb50c80e645fa4 (diff)
replaced getFullname with getFullName, re #3499
Merge request studip/studip!2660
Diffstat (limited to 'app/controllers/course/wizard.php')
-rw-r--r--app/controllers/course/wizard.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/course/wizard.php b/app/controllers/course/wizard.php
index 636d6eb..b45f9e5 100644
--- a/app/controllers/course/wizard.php
+++ b/app/controllers/course/wizard.php
@@ -201,13 +201,13 @@ class Course_WizardController extends AuthenticatedController
$message = MessageBox::success(sprintf(
_('Die Veranstaltung <a class="link-intern" href="%s">"%s"</a> wurde angelegt.'),
$this->link_for($dest_url, ['cid' => $this->course->id]),
- htmlReady($this->course->getFullname())
+ htmlReady($this->course->getFullName())
));
$target = $this->url_for('admin/courses');
} else {
$message = MessageBox::success(sprintf(
_('Die Veranstaltung "%s" wurde angelegt. Sie können sie direkt hier weiter verwalten.'),
- htmlReady($this->course->getFullname())
+ htmlReady($this->course->getFullName())
));
$target = $this->url_for($dest_url, ['cid' => $this->course->id]);
}