summaryrefslogtreecommitdiff
path: root/includes/pages
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pages')
-rw-r--r--includes/pages/guest_credits.php2
-rw-r--r--includes/pages/guest_login.php3
-rw-r--r--includes/pages/user_settings.php3
-rw-r--r--includes/pages/user_shifts.php2
4 files changed, 5 insertions, 5 deletions
diff --git a/includes/pages/guest_credits.php b/includes/pages/guest_credits.php
index d9224cbb..db86132d 100644
--- a/includes/pages/guest_credits.php
+++ b/includes/pages/guest_credits.php
@@ -13,5 +13,5 @@ function credits_title()
*/
function guest_credits()
{
- return template_render(__DIR__ . '/../../templates/guest_credits.html', []);
+ return view(__DIR__ . '/../../templates/guest_credits.html');
}
diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php
index 858ced80..106db33a 100644
--- a/includes/pages/guest_login.php
+++ b/includes/pages/guest_login.php
@@ -488,6 +488,5 @@ function get_register_hint()
]);
}
- //@TODO: FIXME: return error(_('Registration is disabled.'), true);
- return error('Registration is <a href="https://engelsystem.de/33c3/overwhelmed.html">disabled</a>.', true);
+ return error(_('Registration is disabled.'), true);
}
diff --git a/includes/pages/user_settings.php b/includes/pages/user_settings.php
index 69e5a7fb..667e73d9 100644
--- a/includes/pages/user_settings.php
+++ b/includes/pages/user_settings.php
@@ -198,8 +198,9 @@ function user_settings_locale($user_source, $locales)
*/
function user_settings()
{
- global $themes, $user;
+ global $user;
$request = request();
+ $themes = config('available_themes');
$enable_tshirt_size = config('enable_tshirt_size');
$tshirt_sizes = config('tshirt_sizes');
diff --git a/includes/pages/user_shifts.php b/includes/pages/user_shifts.php
index 4dabdfb5..813cb9b3 100644
--- a/includes/pages/user_shifts.php
+++ b/includes/pages/user_shifts.php
@@ -206,7 +206,7 @@ function view_user_shifts()
return page([
div('col-md-12', [
msg(),
- template_render(__DIR__ . '/../../templates/user_shifts.html', [
+ view(__DIR__ . '/../../templates/user_shifts.html', [
'title' => shifts_title(),
'room_select' => make_select($rooms, $shiftsFilter->getRooms(), 'rooms', _('Rooms')),
'start_select' => html_select_key('start_day', 'start_day', array_combine($days, $days), $start_day),