diff options
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index eaedf11e2..23c545f8a 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -459,23 +459,23 @@ function forum_page() { } /** - @addtogroup themeable - @{ -**/ + * @addtogroup themeable + * @{ + */ /** - Format the forum body. - - @param forums - @param topics - @param parents - @param tid - @param sortby - @param forum_per_page - @param offset - - @return the output for the forum body. -**/ + * Format the forum body. + * + * @param forums + * @param topics + * @param parents + * @param tid + * @param sortby + * @param forum_per_page + * @param offset + * + * @return the output for the forum body. + */ function theme_forum_display($forums, $topics, $parents, $tid, $sortby, $forum_per_page, $offset) { // forum list, topics list, topic browser and "add new topic" link @@ -519,14 +519,14 @@ function theme_forum_display($forums, $topics, $parents, $tid, $sortby, $forum_p } /** - Format the forum listing. - - @param forums - @param parents - @param tid - - @return output for the forum listing. -**/ + * Format the forum listing. + * + * @param forums + * @param parents + * @param tid + * + * @return output for the forum listing. + */ function theme_forum_list($forums, $parents, $tid) { global $user; @@ -582,16 +582,16 @@ function theme_forum_list($forums, $parents, $tid) { } /** - Format the topic listing. - - @param tid - @param topics - @param sortby - @param forum_per_page - @param offset - - @return output for the topic list. -**/ + * Format the topic listing. + * + * @param tid + * @param topics + * @param sortby + * @param forum_per_page + * @param offset + * + * @return output for the topic list. + */ function theme_forum_topic_list($tid, $topics, $sortby, $forum_per_page, $offset) { global $id, $status, $user, $pager_total, $forum_topic_list_header; @@ -632,7 +632,7 @@ function theme_forum_topic_list($tid, $topics, $sortby, $forum_per_page, $offset return $output; } -/** @} End of addtogroup themeable **/ +/** @} End of addtogroup themeable */ function _forum_icon($new_posts, $num_posts = 0, $comment_mode = 0) { |