Okay since no help has been forth coming I have been playing around with it myself.
below
foreach $checkthis(@threadsum) {
chomp($checkthis);I added the
chomp($checkit[8]);But changed it to
chomp($checkit[7]);then in in forumdisplay I changed:
$lastAuthName = qq( );
$lastName = $threadinfo[8];
$lastName =~ tr/+/ /; to
$lastAuthName = qq( );
$lastName = $threadinfo[7];
$lastName =~ tr/+/ /; It's working.
hunter