projects
/
fido.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea91b89
)
modules/MISC: fix month numbers (now 1..12)
author
Sebastian
<basti@notizbuch>
Sat, 7 Jun 2014 13:32:13 +0000
(15:32 +0200)
committer
Sebastian
<basti@notizbuch>
Sat, 7 Jun 2014 13:32:13 +0000
(15:32 +0200)
modules/MISC.pm
patch
|
blob
|
history
diff --git
a/modules/MISC.pm
b/modules/MISC.pm
index a5190ed4bff2262895cdcd27a2cf998eae49f470..e6c09123d18934b788fb82fb3712bf725474cbcb 100644
(file)
--- a/
modules/MISC.pm
+++ b/
modules/MISC.pm
@@
-75,9
+75,9
@@
our %charsets = (
sub read_datestring($)
{
my %months = (
- "Jan" =>
0, "Feb" => 1, "Mar" => 2, "Apr" => 3
,
- "May" =>
4, "Jun" => 5, "Jul" => 6, "Aug" => 7
,
- "Sep" =>
8, "Oct" => 9, "Nov" => 10, "Dec" => 11
,
+ "Jan" =>
1, "Feb" => 2, "Mar" => 3, "Apr" => 4
,
+ "May" =>
5, "Jun" => 6, "Jul" => 7, "Aug" => 8
,
+ "Sep" =>
9, "Oct" => 10, "Nov" => 11, "Dec" => 12
,
);
$_ = shift;