diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-12-27 00:38:42 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-12-27 00:38:42 +0530 |
commit | a71625ca76344098a6e207928b839de576cdabb6 (patch) | |
tree | cb01e5d47356eb26d4dea78e746256999c951992 | |
parent | f7c764986f9578c703258943404f7cadda3bd858 (diff) | |
download | forums-a71625ca76344098a6e207928b839de576cdabb6.tar forums-a71625ca76344098a6e207928b839de576cdabb6.tar.gz forums-a71625ca76344098a6e207928b839de576cdabb6.tar.bz2 forums-a71625ca76344098a6e207928b839de576cdabb6.tar.xz forums-a71625ca76344098a6e207928b839de576cdabb6.zip |
[ticket/11271] Add docblock of feed_generate_content( )
PHPBB3-11271
-rw-r--r-- | phpBB/feed.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php index a3528ddd71..ccc1c6ec1e 100644 --- a/phpBB/feed.php +++ b/phpBB/feed.php @@ -275,6 +275,14 @@ function feed_format_date($time) /** * Generate text content +* +* @param string $content is feed text content +* @param string $uid is bbcode_uid +* @param string $bitfield is bbcode bitfield +* @param int $options bbcode flag options +* @param int $forum_id is the forum id +* @param array $post_attachments is an array containing the attachments and their respective info +* @return string the html content to be printed for the feed **/ function feed_generate_content($content, $uid, $bitfield, $options, $forum_id, $post_attachments) { |