File: phpbb/feed/helper.php
Unmodified
Added
Modified
Removed
Line 149 | Line 149 |
---|
{ $update_count = array(); parse_attachments($forum_id, $content, $post_attachments, $update_count);
|
{ $update_count = array(); parse_attachments($forum_id, $content, $post_attachments, $update_count);
|
$post_attachments = implode('<br />', $post_attachments);
| $content .= implode('<br />', $post_attachments);
|
// Convert attachments' relative path to absolute path
|
// Convert attachments' relative path to absolute path
|
$post_attachments = str_replace($this->phpbb_root_path . 'download/file.' . $this->phpEx, $this->get_board_url() . '/download/file.' . $this->phpEx, $post_attachments);
$content .= $post_attachments;
| $content = str_replace($this->phpbb_root_path . 'download/file.' . $this->phpEx, $this->get_board_url() . '/download/file.' . $this->phpEx, $content);
|
}
// Remove Comments from inline attachments [ia]
| }
// Remove Comments from inline attachments [ia]
|