1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Merge pull request #1615 from rica-carv/rica-carv-patch-forum

Parser param correction for forum description.
This commit is contained in:
Cameron
2016-05-05 13:48:42 -07:00

View File

@@ -405,7 +405,7 @@ function parse_forum($f, $restricted_string = '')
$f['forum_name'] = substr($f['forum_name'], 1);
}
$f['forum_name'] = $tp->toHTML($f['forum_name'], true, 'no_hook');
$f['forum_description'] = $tp->toHTML($f['forum_description'], true, 'no_hook');
$f['forum_description'] = $tp->toHTML($f['forum_description'], TRUE, "BODY");
//$url= $e107->url->create('forum/forum/view', $f);