GCSkye
05-26-2009, 02:12 AM
I was looking to have prefix show up when messages are posted in infernoshoutbox. I wen't through the xml file and found the following:
if ($infernoshout->vbulletin->options['ishout_bbcodes'] & 64)
{
$titleprefix = '';
$titlesuffix = '';
}
$shout =& new shout;
$shout->silent = true;
$shout->process('/me posted the thread ' . $titleprefix . unhtmlspecialchars($this->thread['title']) . $titlesuffix);
}
This seems to be what is telling it to create a new shout when users post a thread. I need it to add the thread prefix as well.
if ($infernoshout->vbulletin->options['ishout_bbcodes'] & 64)
{
$titleprefix = '';
$titlesuffix = '';
}
$shout =& new shout;
$shout->silent = true;
$shout->process('/me posted the thread ' . $titleprefix . unhtmlspecialchars($this->thread['title']) . $titlesuffix);
}
This seems to be what is telling it to create a new shout when users post a thread. I need it to add the thread prefix as well.