diff options
author | msquare <msquare@notrademark.de> | 2016-11-15 16:31:55 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-11-15 16:31:55 +0100 |
commit | 918d41ca70a7ca1fd59785c31fdf6e0bf39470e9 (patch) | |
tree | e501824b8c69f6a015824e3fd77e6e5cd1c7ffb3 /includes/pages | |
parent | ec6016cd38fc5ce6455cace6ffbc703f78f31096 (diff) |
reduce complexity of menu and hints
Diffstat (limited to 'includes/pages')
-rw-r--r-- | includes/pages/admin_questions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/admin_questions.php b/includes/pages/admin_questions.php index 13614a66..f53cfab9 100644 --- a/includes/pages/admin_questions.php +++ b/includes/pages/admin_questions.php @@ -15,7 +15,7 @@ function admin_new_questions() { $new_messages = sql_num_query("SELECT * FROM `Questions` WHERE `AID` IS NULL"); if ($new_messages > 0) { - return info('<a href="' . page_link_to("admin_questions") . '">' . _('There are unanswered questions!') . '</a>', true); + return '<a href="' . page_link_to("admin_questions") . '">' . _('There are unanswered questions!') . '</a>'; } } } |