Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Advanced Knowledge
Boardlink: Local only for moment
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
I try to display an other thing that the field 'post_text' inside each news block.
For that i've created an other field named 'heading' in phpbb_posts table.
It works, but bbcode inside heading field are not convert in html tag.
I think there is something to do there (in portal/includes/functions.php):
Code: Select all
// Second parse bbcode here
if ($row['bbcode_bitfield'])
{
$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
}
Code: Select all
// Second parse bbcode here
if ($row['bbcode_bitfield'])
{
$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
$bbcode->bbcode_second_pass($message2, $row['bbcode_uid'], $row['bbcode_bitfield']);
}
Any help would be appreciated . Thanks.[/i]