hehe quite true, it is a n easy hack, I had a look at your board, you profile page seems to line up ok, I cant see whats not lined up.
As for the issues you pointed out I know brett is aware of a few of them, the others I never noticed, like the 'from' field.
Anyways I'm sure brett will fix these all in good time.
-------------------------------------------
Ive found the problem to it displaying your name, not who the message came from.
Also will now show wether or not the message has been read by the receipient.
In file public_pm_folders_review.pl
Find:
code:
if ($to eq 'yes') {
my $read_marker_1 = '';
my $read_marker_2 = '';
} else {
my $read_marker_1 = "<b>";
my $read_marker_2 = "</b>";
}
my($f, $t) = split(/./, $folder);
my $from_or_too = ($in{f} eq 'sent') ? $username : &get_public_name($to);
my $formatted_time = &DateFormat($date) . " " . &TimeFormat($time);
Replace that with:
code:
[qb] if ($in{f} ne 'sent') {
if ("$read" eq "yes") {
$read_marker_1 = '';
$read_marker_2 = '';
} else {
$read_marker_1 = "<b>";
$read_marker_2 = "</b>";
}
}
my($f, $t) = split(/./, $folder);
$from_or_too = &get_public_name($from) if ($in{f} eq 'inbox');
$from_or_too = &get_public_name($to) if ($in{f} eq 'sent');
my $formatted_time = &DateFormat($date) . " " . &TimeFormat($time);
if ($in{f} eq 'sent') {
if ($from eq $user_number) {
if ($read_to eq "yes") {
$ReadReciept = $vars_wordlets{pm_sent_recip_read};
} elsif ($read_to eq "no") {
$ReadReciept = $vars_wordlets{pm_sent_recip_unread};
} else {
$ReadReciept = $vars_wordlets{'pm_sent'};
}
} else {
$ReadReciept = $vars_wordlets{'pm_received'};
}
$ReadReciept = qq| <i>( $ReadReciept )</i> |;
} # End If sent folder
[/qb]
Find:
code:
$read_marker_1 $from_or_too $read_marker_2 $user_profile{15}
Replace that with :
code:
[qb]$read_marker_1 $from_or_too $read_marker_2 $user_profile{15} $ReadReciept
[/qb]
--------------------------------------------
Also the sent box says FROM in the heading when it should say 'Sent to'.
To fix this.
Open public_pm_folders_review.pl
Find:
code:
# standard top of HTML page
print "$Header";
Add below:
code:
[qb]$vars_wordlets{author_from_colon} = $vars_wordlets{author_to} if ($in{f} eq 'sent');
[/qb]