Alright, this is not tested at all, so don't blame me if I cause a nuclear explosion to blow up half the world.
In functions_bbcodeparse.php, find this:
PHP Code:
// [QUOTE]
$bbcodes['custom']['find']['[quote]'] = '#\[quote\](<br>|<br />|\r\n|\n|\r)??(.*)(<br>|<br />|\r\n|\n|\r)??\[/quote\]#esiU';
$bbcodes['custom']['replace']['[quote]'] = "handle_bbcode_quote('\\2')";
$bbcodes['custom']['recurse']['quote'][0] = array('handler' => 'handle_bbcode_quote');
Now add this above it:
PHP Code:
// [OT]
$bbcodes['custom']['find']['[ot]'] = '#\[ot\](<br>|<br />|\r\n|\n|\r)??(.*)(<br>|<br />|\r\n|\n|\r)??\[/ot\]#esiU';
$bbcodes['custom']['replace']['[ot]'] = "handle_bbcode_offtopic('\\2')";
$bbcodes['custom']['recurse']['ot'][0] = array('handler' => 'handle_bbcode_offtopic');
Now, find this:
PHP Code:
// ###################### Start bbcodehandler_quote #######################
Add this above it:
PHP Code:
// ###################### Start bbcodehandler_offtopic #######################
function handle_bbcode_offtopic($message)
{
global $vboptions, $vbphrase, $stylevar, $show;
// remove empty codes
if (trim($message) == '')
{
return '';
}
// remove unnecessary escaped quotes
$message = str_replace('\\"', '"', $message);
global $stopsaveparsed, $parsed_postcache;
if ($stopsaveparsed OR $parsed_postcache['skip'] == true OR !$vboptions['cachemaxage'])
{
$show['iewidthfix'] = (is_browser('ie') AND !(is_browser('ie', 6)));
}
else
{
// this post may be cached, so we can't allow this "fix" to be included in that cache
$show['iewidthfix'] = false;
}
eval('$html = "' . fetch_template('bbcode_offtopic') . '";');
return $html;
}
Now add the code you have in your first post to a new template called bbcode_offtopic, replacing {param} with $message.