summaryrefslogtreecommitdiff
path: root/fml/lib/Mail/ThreadTrack
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-07-21 10:37:12 +0000
committerfukachan <fukachan>2003-07-21 10:37:12 +0000
commitabb87ebf2e413f500648cd38c5d22df15c62bdd7 (patch)
tree15798d31447f2d6297d38db1e3e4812ba7b8ea53 /fml/lib/Mail/ThreadTrack
parenta85de35fc6dcd6c0ade02d04f688483c7c5b9c0b (diff)
downloadfml8-abb87ebf2e413f500648cd38c5d22df15c62bdd7.tar.gz
fml8-abb87ebf2e413f500648cd38c5d22df15c62bdd7.tar.bz2
fml8-abb87ebf2e413f500648cd38c5d22df15c62bdd7.zip
method-ify date_to_unixtime() of Mail::Message::Date.
Diffstat (limited to 'fml/lib/Mail/ThreadTrack')
-rw-r--r--fml/lib/Mail/ThreadTrack/Analyze.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/fml/lib/Mail/ThreadTrack/Analyze.pm b/fml/lib/Mail/ThreadTrack/Analyze.pm
index be113419..14638778 100644
--- a/fml/lib/Mail/ThreadTrack/Analyze.pm
+++ b/fml/lib/Mail/ThreadTrack/Analyze.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Analyze.pm,v 1.29 2002/12/22 03:20:44 fukachan Exp $
+# $FML: Analyze.pm,v 1.30 2002/12/24 10:19:49 fukachan Exp $
#
package Mail::ThreadTrack::Analyze;
@@ -552,7 +552,8 @@ sub _speculate_time
if (defined $header->get('date')) {
use Mail::Message::Date;
- return Mail::Message::Date::date_to_unixtime($header->get('date'));
+ my $obj = new Mail::Message::Date;
+ return $obj->date_to_unixtime($header->get('date'));
}
else {
return time;