diff options
author | Philip Häusler <msquare@notrademark.de> | 2012-12-30 18:04:20 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2012-12-30 18:04:20 +0100 |
commit | 3d2f6456e0c4f6942fa5e523cbe193aa2fa9f7ab (patch) | |
tree | bed60a95a5b89d14a32d873f94ec23be6f632c3e /public | |
parent | dd4530d760b02693425d39ae579dff514c3e40b4 (diff) |
hint for not arrived angels
Diffstat (limited to 'public')
-rw-r--r-- | public/index.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php index 85771dec..e551f2c5 100644 --- a/public/index.php +++ b/public/index.php @@ -185,6 +185,10 @@ elseif ($p == "faq") { if (isset ($user) && $p != "user_messages") $content = user_unread_messages() . $content; +// Hinweis für Engel, die noch nicht angekommen sind +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; + // Erzengel Hinweis für unbeantwortete Fragen if (isset ($user) && $p != "admin_questions") $content = admin_new_questions() . $content; |