hello !
I'm trying to display post in the front of my website. It work, but not for attachments.
Image are not displayed, and I have "view attachment x"
Here a screen to the issue
And on my forum I have the image.
My code :
I've tried to find a solution, but found nothing...
Thanks for your help !
I'm trying to display post in the front of my website. It work, but not for attachments.
Image are not displayed, and I have "view attachment x"
Here a screen to the issue
And on my forum I have the image.
My code :
Code:
public function getTopic($topic_id)
{
$topic = XenForo_Model::create('XenForo_Model_Thread')->getThreadById($topic_id, array('join' => XenForo_Model_Thread::FETCH_FIRSTPOST));
$formatter = XenForo_BbCode_Formatter_Base::create();
$parser = new XenForo_BbCode_Parser($formatter);
$topic['message_html'] = $parser->render($topic['message']);
return $topic;
}
I've tried to find a solution, but found nothing...
Thanks for your help !