Add the common german date format

This commit is contained in:
Michael Dawart 2015-08-30 14:39:54 +02:00
parent 6c711f696f
commit 7d8b6f281c
1 changed files with 1 additions and 0 deletions

View File

@ -169,6 +169,7 @@ class DateParser extends Base
'm/d/Y' => date('m/d/Y'),
'd/m/Y' => date('d/m/Y'),
'Y/m/d' => date('Y/m/d'),
'd.m.Y' => date('d.m.Y'),
);
}