Quote:
Originally Posted by tmhall
Oh, cool. How'd you do that? I'm just a novice hacker, but not clueless. Is it just adding a couple lines to journal.php?
|
Yes.
Find ;
PHP Code:
$commentdate= vbdate($vboptions['dateformat'], $reccom['comment_date'], 1);
$commenttime= vbdate($vboptions['timeformat'], $reccom['comment_date']);
eval('$reccombits .= "' . fetch_template('journal_recent_comments') . '";');
and replace with ;
PHP Code:
$commentdate= vbdate($vboptions['dateformat'], $reccom['comment_date'], 1);
$commenttime= vbdate($vboptions['timeformat'], $reccom['comment_date']);
require_once('./includes/functions_newpost.php');
$reccom['comment_text']= convert_url_to_bbcode($reccom['comment_text']);
require_once('./includes/functions_bbcodeparse.php');
$reccom['comment_text']= parse_bbcode2($reccom['comment_text'], 0, $setting['allow_imgcode'], $setting['allow_smilies'], $setting['allow_bbcode']);
eval('$reccombits .= "' . fetch_template('journal_recent_comments') . '";');