[vhffs-dev] [856] This is not a joke ! |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 856
Author: gradator
Date: 2007-09-02 21:56:49 +0000 (Sun, 02 Sep 2007)
Log Message:
-----------
This is not a joke !
Modified Paths:
--------------
trunk/vhffs-listengine/src/listengine.pl
Modified: trunk/vhffs-listengine/src/listengine.pl
===================================================================
--- trunk/vhffs-listengine/src/listengine.pl 2007-09-01 12:45:01 UTC (rev 855)
+++ trunk/vhffs-listengine/src/listengine.pl 2007-09-02 21:56:49 UTC (rev 856)
@@ -136,8 +136,8 @@
my (undef,undef,undef,$day,$month,$year) = localtime(time);
$year += 1900;
$month += 1;
- $month = '0'.$month if( $month < 9 );
- $day = '0'.$day if( $day < 9 );
+ $month = '0'.$month if( $month <= 9 );
+ $day = '0'.$day if( $day <= 9 );
my $message_id = $mail->get( 'Message-Id' );
$message_id =~ s/^<//;