Fix a problem where lastseen data won't get displayed if the mailing
authortausq <>
Sat, 27 Apr 2002 13:41:20 +0000 (13:41 +0000)
committertausq <>
Sat, 27 Apr 2002 13:41:20 +0000 (13:41 +0000)
list info associated with the entry had no archive info

Util.pm

diff --git a/Util.pm b/Util.pm
index 5a93ca3..08a5f07 100644 (file)
--- a/Util.pm
+++ b/Util.pm
@@ -225,7 +225,7 @@ sub FormatLastSeen {
     $lastseen = (($d1 gt $d2) ? $lastseenpgp : $lastseenfrom);
   }
 
-  my ($date,$user,$list,$msgid) = ($lastseen =~ /^\[(.+?)\]\s+"(.+?)"\s+"(?:<(.+?)>.+?|\-)"\s+"<(.+?)>"/);
+  my ($date,$user,$list,$msgid) = ($lastseen =~ /^\[(.+?)\]\s+"(.+?)"\s+"(?:<(.+?)>.*?|\-)"\s+"<(.+?)>"/);
   $list = "on $list" if ($list);
   return "$date $list<br>&nbsp;Message ID: $msgid";
 }