From e475b4f08364ebb5a7dd1717bd24e8d28dd9bd53 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sun, 1 Dec 2013 22:16:29 +0100 Subject: prevent shirt and dect message from beeing shown when not logged in --- public/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index 9a61c9cd..82ece193 100644 --- a/public/index.php +++ b/public/index.php @@ -194,10 +194,10 @@ if (isset($user) && $p != "user_messages") if (isset($user) && $user['Gekommen'] == 0) $content = error(_("You are not marked as arrived. Please go to heaven's desk, get your angel badge and/or tell them that you arrived already."), true) . $content; -if($enable_tshirt_size && $user['Size'] == "") +if(isset($user) && $enable_tshirt_size && $user['Size'] == "") $content = error(_("You need to specify a tshirt size in your settings!"), true) . $content; -if($user['DECT'] == "") +if(isset($user) && $user['DECT'] == "") $content = error(_("You need to specify a DECT phone number in your settings! If you don't have a DECT phone, just enter \"-\"."), true) . $content; // Erzengel Hinweis für unbeantwortete Fragen -- cgit v1.2.3-54-g00ecf