For the record this is how you'd re-create it under v6.04e so you can see it's profile 31.

Quote
** EDIT UBB_PROFILE.CGI

Look for:
print FILE ("$user_profile[29]n");

Add underneath:
print FILE ("$user_profile[30]n");
print FILE ("$user_profile[31]n");

** DONE - SAVE AND CLOSE UBB_PROFILE.CGI **

** EDIT UBB_LIB.CGI **

Look for the following code:
my $maxmemfields = 29; #total fields permitted in member file

Replace that code with:
my $maxmemfields = 31; #total fields permitted in member file

** DONE - SAVE AND CLOSE UBB_LIB.CGI **

** EDIT UBB_NEW_REPLY.CGI **

Look for the following code:
# lc the logged in user-- for comparisons below
my $lc_un = lc($username);

Underneath this add:
# Get Total Pages
my $doextra = '';
if (($stat_line[2] + 1) > $vars_display{HTMLDisplayMax}) {
my $total_pages = int (($stat_line[2] + 1) / $vars_display{HTMLDisplayMax});
if (($stat_line[2] + 1) % $vars_display{HTMLDisplayMax}) { $total_pages++; }
if ($total_pages > 1) {
$doextra = "&p=$total_pages";
}
}

Look for the following code:
if (($user_profile[7] >= $vars_misc{MemberMinimum}) && ($user_profile[8] eq 'Junior Member')) {
$user_profile[8] = 'Member';
}

Underneath that add:
# Write Last Post Info To Member File
if ($permission ne 'private') {
$LastPostInfo = qq~<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=get_topic&f=$in{f}&t=$in{t}$doextra#$post_number">$this_subject</a> at $GotTime{Time} on $GotTime{HyphenDate}~;
} else { $LastPostInfo = "$vars_wordlets_mods{Info_Not_Avail}"; }

$user_profile[31] = $LastPostInfo;

** DONE - SAVE AND CLOSE UBB_NEW_REPLY.CGI **

** EDIT UBB_NEW_TOPIC.CGI **

Look for the following code:
if (($user_profile[7] >= $vars_misc{MemberMinimum}) && ($user_profile[8] eq 'Junior Member')) {
$user_profile[8] = 'Member';
}

Underneath that code add the following:
# Write Last Post Info To Member File
if ($permission ne 'private') {
$LastPostInfo = qq~<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=get_topic&f=$in{f}&t=$in{t}#000000">$this_subject</a> at $GotTime{Time} on $GotTime{HyphenDate}~;
} else { $LastPostInfo = "$vars_wordlets_mods{Info_Not_Avail}"; }

$user_profile[31] = $LastPostInfo;

** DONE - SAVE AND CLOSE UBB_NEW_TOPIC.CGI **

** EDIT PUBLIC_DISPLAY_PROFILE.PL TEMPLATE **

Look for the following code:
email_line

} # if user wants public display of email address

Underneath, add the following:
# Last Post Info in Profile
if ($user_profile[31] eq "") {
$LastPostInfo = "$vars_wordlets_mods{Info_Not_Avail}"
} else {
$LastPostInfo = "$user_profile[31]"
}

print <<THISFIELD;

<tr bgcolor="$vars_style{AltColumnColor1}">
<td>
<FONT size="$vars_style{TextSize}" FACE="$vars_style{FontFace}">
<B>$vars_wordlets_mods{Last_Post_Title}</B>:
</font>
</td>
<td>
<FONT size="$vars_style{TextSize}" FACE="$vars_style{FontFace}">
$LastPostInfo
</FONT>
</td>
</tr>

THISFIELD


** DONE - SAVE AND CLOSE PUBLIC_DISPLAY_PROFILE.PL TEMPLATE **