summaryrefslogtreecommitdiff
path: root/www-ssl/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'www-ssl/index.php')
-rw-r--r--www-ssl/index.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/www-ssl/index.php b/www-ssl/index.php
index 831225e6..d722de32 100644
--- a/www-ssl/index.php
+++ b/www-ssl/index.php
@@ -13,6 +13,7 @@ require_once ('includes/sys_user.php');
require_once ('config/config.php');
require_once ('config/config_db.php');
+require_once ('includes/pages/admin_questions.php');
require_once ('includes/pages/user_messages.php');
session_start();
@@ -58,6 +59,9 @@ if (in_array($p, $privileges)) {
require_once ('includes/pages/guest_login.php');
$content = guest_logout();
}
+ elseif ($p == "admin_questions") {
+ $content = admin_questions();
+ }
elseif ($p == "admin_angel_types") {
require_once ('includes/pages/admin_angel_types.php');
$content = admin_angel_types();
@@ -96,6 +100,10 @@ elseif ($p == "faq") {
if (isset ($user) && $p != "user_messages")
$content = user_unread_messages() . $content;
+// Erzengel Hinweis für unbeantwortete Fragen
+if (isset ($user) && $p != "admin_questions")
+ $content = admin_new_questions() . $content;
+
echo template_render('../templates/layout.html', array (
'theme' => isset ($user) ? $user['color'] : $default_theme,
'title' => $title,