diff options
Diffstat (limited to 'includes/pages/user_questions.php')
-rw-r--r-- | includes/pages/user_questions.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/includes/pages/user_questions.php b/includes/pages/user_questions.php index d1a90292..fa66e8db 100644 --- a/includes/pages/user_questions.php +++ b/includes/pages/user_questions.php @@ -1,10 +1,16 @@ <?php +/** + * @return string + */ function questions_title() { return _("Ask the Heaven"); } +/** + * @return string + */ function user_questions() { global $user; @@ -62,4 +68,6 @@ function user_questions() break; } } + + return ''; } |