|
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
|