summaryrefslogtreecommitdiff
path: root/includes/pages/admin_questions.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-03 03:22:48 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-03 03:22:48 +0100
commit356b2582f3e6a43ecf2607acad4a7fe0b37f659a (patch)
treee02c9214b23a0b9ec33aa725db962d565bd30a82 /includes/pages/admin_questions.php
parentd71e7bbfad2f07f82df0c515608996d250fd4182 (diff)
PPHDoc, formatting, fixes, cleanup
Diffstat (limited to 'includes/pages/admin_questions.php')
-rw-r--r--includes/pages/admin_questions.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/pages/admin_questions.php b/includes/pages/admin_questions.php
index c65280d5..032b010e 100644
--- a/includes/pages/admin_questions.php
+++ b/includes/pages/admin_questions.php
@@ -1,5 +1,8 @@
<?php
+/**
+ * @return string
+ */
function admin_questions_title()
{
return _("Answer questions");
@@ -7,6 +10,8 @@ function admin_questions_title()
/**
* Renders a hint for new questions to answer.
+ *
+ * @return string|null
*/
function admin_new_questions()
{
@@ -25,6 +30,9 @@ function admin_new_questions()
return null;
}
+/**
+ * @return string
+ */
function admin_questions()
{
global $user;
@@ -136,4 +144,6 @@ function admin_questions()
break;
}
}
+
+ return '';
}