| Forum board and title with JoomSEO 4 Years, 5 Months ago |
|
Now that Fireboard is calling content bot items when you view a thread it is calling JoomSEO.
BUT there is no title being parsed, to fix add after line 501 in:
/components/com_fireboard/template/default/view.php
[code:1]
$row->title = \"$jr_topic_title | $fr_name\";
[/code:1]
So it looks like the following:
[code:1]
global $_MAMBOTS;
$row = new t();
$row->text = $sb_message_txt;
$row->title = \"$jr_topic_title | $fr_name\";
$_MAMBOTS->loadBotGroup( \'content\' );
$params =& new mosParameters( \'\' );
$results = $_MAMBOTS->trigger( \'onPrepareContent\', array( &$row, &$params, 0 ), true );
$msg_text = $row->text;
[/code:1]
Cheers
Phill
|
|
|
| Forum board and title with JoomSEO 4 Years, 5 Months ago |
|
Now that Fireboard is calling content bot items when you view a thread it is calling JoomSEO.
BUT there is no title being parsed, to fix add after line 501 in:
/components/com_fireboard/template/default/view.php
[code:1]
$row->title = \"$jr_topic_title | $fr_name\";
[/code:1]
So it looks like the following:
[code:1]
global $_MAMBOTS;
$row = new t();
$row->text = $sb_message_txt;
$row->title = \"$jr_topic_title | $fr_name\";
$_MAMBOTS->loadBotGroup( \'content\' );
$params =& new mosParameters( \'\' );
$results = $_MAMBOTS->trigger( \'onPrepareContent\', array( &$row, &$params, 0 ), true );
$msg_text = $row->text;
[/code:1]
Cheers
Phill
|
|
|
| Re:Forum board and title with JoomSEO 3 Years, 7 Months ago |
|
i dont suppose there is a slightly more up to date version of this fix eh??:S
|
|
|
|