+30Nov00=======================================================================
+1. remove %nn strings from dups of announces and spots
29Nov00=======================================================================
1. make some small changes to DXmsg to try to track delete problems?
2. fix ann/full so it doesn't dup
chomp $text;
unpad($text);
+ $text =~ s/[\\\%]\d+//g;
$text =~ s/[^a-zA-Z0-9]//g;
$text = substr($text, 0, $duplth) if length $text > $duplth;
my $dupkey = "A$to|\L$text";
chomp $text;
$text = substr($text, 0, $duplth) if length $text > $duplth;
unpad($text);
+ $text =~ s/[\\\%]\d+//g;
$text =~ s/[^a-zA-Z0-9]//g;
my $dupkey = "X$freq|$call|$d|\L$text";
return DXDupe::check($dupkey, $main::systime+$dupage);