simply break it with
codes in ubb_lib_posting.cgi
# author info options
undef($post_total_line); undef($location_line); undef($regdate_line);
@author_extra = @blank;
if ($vars_display{author_post_total} eq 'yes') {
$post_total_line = qq( $vars_wordlets{author_posts} $user_profile[7] );
push(@author_extra, $post_total_line);
}
if ($vars_display{author_location} eq 'yes') {
$location_line = qq( $vars_wordlets{author_from} $user_profile[6] );
push(@author_extra, $location_line);
}
if ($vars_display{author_reg_date} eq 'yes') {
$regdate_line = qq( $vars_wordlets{author_registered} $RegDate );
push(@author_extra, $regdate_line);
}
add
before those
so the overall results will be:
Posts: xxx
Location: xxx
Reg Date: xxx
Members Rating
xxxxx
[ March 19, 2001: Message edited by: q_ware ]