From 6565c4df864eaf8ebf23c1cb26cd5a3ac67ee585 Mon Sep 17 00:00:00 2001 From: tausq <> Date: Sat, 27 Apr 2002 13:41:20 +0000 Subject: [PATCH] Fix a problem where lastseen data won't get displayed if the mailing list info associated with the entry had no archive info --- Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util.pm b/Util.pm index 5a93ca3..08a5f07 100644 --- 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
 Message ID: $msgid"; } -- 2.20.1