Fixed {xen:helper bodytext} is not called properly for status message

xfrocks

Well-known member
Minor bug but would be great to be fixed :D

File: XenForo_ViewPublic_Member_Post
Line: 12

PHP:
XenForo_Template_Helper_Core::helperBodyText($this->_params['profilePost']['message']) . ' '

Should be:

PHP:
XenForo_Template_Helper_Core::
callHelper('bodytext', array($this->_params['profilePost']['message'])) . ' '

Thanks and keep up the good work!
 
Top Bottom