4
Hi,
Yes that it!
Now one more step:
Go to system/blocks/system_blocks.php and
find this function:
function b_system_comments_show($options)
find this line:
$com['time'] = formatTimestamp($comments[$i]->getVar('com_created'),'m');
add just bellow:
$com['text']= $comments[$i]->getVar('com_text');
Ok, it should work now!
Oh, one thing, if you want to show smilies etc I think you must do it this way:
$myts =& MyTextSanitizer::getInstance();
$com['text'] = $myts->displayTarea($comments[$i]->getVar('com_text'),1,1,1);