diff options
Diffstat (limited to 'includes/pages/guest_credits.php')
-rw-r--r-- | includes/pages/guest_credits.php | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/includes/pages/guest_credits.php b/includes/pages/guest_credits.php index cbdc3133..db86132d 100644 --- a/includes/pages/guest_credits.php +++ b/includes/pages/guest_credits.php @@ -1,9 +1,17 @@ <?php -function credits_title() { - return _("Credits"); + +/** + * @return string + */ +function credits_title() +{ + return _('Credits'); } -function guest_credits() { - return template_render(__DIR__ . '/../../templates/guest_credits.html', []); +/** + * @return string + */ +function guest_credits() +{ + return view(__DIR__ . '/../../templates/guest_credits.html'); } -?>
\ No newline at end of file |