summaryrefslogtreecommitdiff
path: root/includes/pages/admin_questions.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-21 19:37:42 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-21 20:12:35 +0100
commit915ce28feeb9104bf7854ccbd80caebb5dce4aaa (patch)
tree503a31809070fee875e82213d46b90fb0b2fcac9 /includes/pages/admin_questions.php
parent9a3ad8883403949a59e8935497a548ec536f1d40 (diff)
Replaced " with '
Diffstat (limited to 'includes/pages/admin_questions.php')
-rw-r--r--includes/pages/admin_questions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/admin_questions.php b/includes/pages/admin_questions.php
index ef84b111..aca9b570 100644
--- a/includes/pages/admin_questions.php
+++ b/includes/pages/admin_questions.php
@@ -24,7 +24,7 @@ function admin_new_questions()
$new_messages = count(DB::select('SELECT `QID` FROM `Questions` WHERE `AID` IS NULL'));
if ($new_messages > 0) {
- return '<a href="' . page_link_to("admin_questions") . '">' . _('There are unanswered questions!') . '</a>';
+ return '<a href="' . page_link_to('admin_questions') . '">' . _('There are unanswered questions!') . '</a>';
}
}
}