https://vborg.vbsupport.ru/showpost....&postcount=513
[high] * MrNase has an[/high]
Addition: parse smilies in comments.
Open vbgarage.php and find:
PHP Code:
$comment['dateline'] = vbdate($vboptions['dateformat'],$comment['dateline'],true);
eval('$commentbits .= "' . fetch_template('vbgarage_commentbits') . '";');
and replace it with
PHP Code:
$comment['dateline'] = vbdate($vboptions['dateformat'],$comment['dateline'],true);
$comment['pagetext'] = parse_bbcode2($comment['pagetext'],'0','0','1','0','0','1');
eval('$commentbits .= "' . fetch_template('vbgarage_commentbits') . '";');
Replace
Code:
'0','0','1','0','0','1'
with
Code:
'0','0','1','1','0','1'
if bbcode should also be parsed. Have fun with it