OK, I think I've fixed this one myself for the time being by adding the line highlighted in bold below ....

Quote
if(($vars_misc{EditWordingTimer} == 0) || ($is_admin_mod && ($username ne $post_info[2]))) {
# If you wish to prevent admin / mod edits of
# messages from having the edited message,
# comment out the following line:
# $appender = $string;
} elsif($is_admin_mod) {
} elsif($vars_misc{EditWordingTimer} > 0) {
my $ut = $GotTime{CurrentEpoch};
my $tt = &ConvertPostTimeToUnixEpoch($post_info[3], $post_info[4]) + ($vars_misc{EditWordingTimer} * 60);
if($ut > $tt) {
$appender = $string;
} # end if
} # end if
I don't, however, like making changes to the scripts. Will a fix for this be made in time for the 6.5.0 final?

Paul