Nope, then you get "(user) wrote at (date) wrote:".Erik Frèrejean wrote:Open ./includes/bbcode.php, Find:After-add:Code: Select all
$post_link .= date ($user->data['user_dateformat'], $param['post_time']);
Find:Code: Select all
$split = "wrote at ";
After-add:Code: Select all
$post_link .= $param['post_subject'];
Find:Code: Select all
$split = "wrote in ";
After-add:Code: Select all
return $username . (($post_link != "") ? ' - ' . $post_link : '');
Should do the trick.Code: Select all
return $username . (($post_link != "") ? ' '.$split . $post_link : '');