Trotor 26 01/27/2017 12:04 AM Где можно пофиксить что бб-коды отображались в комментариях в профилях пользователей? В особенности конечно ссылки, которые не активны в профилях. Share this post Link to post Share on other sites
newbie 1,720 01/27/2017 06:51 AM admin/applications/members/sources/comments.php Выше while( $row = $this->DB->fetch($o) ) добавить IPSText::getTextClass('bbcode')->parse_html = 0; IPSText::getTextClass('bbcode')->parse_smilies = 0; IPSText::getTextClass('bbcode')->parse_bbcode = 1;Выше $comments[] = $row; добавить $row['comment_content'] = IPSText::getTextClass('bbcode')->preDisplayParse( IPSText::getTextClass('bbcode')->preDbParse( $row['comment_content'] ) ); 2 Share this post Link to post Share on other sites
Trotor 26 01/27/2017 11:28 AM admin/applications/members/sources/comments.phpСпасибо, то что надо! 1 Share this post Link to post Share on other sites