diff options
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>'; } } } |