- Fixed bug #986, so that the 'info' report uses the correct date format
  (thanks to Louis-Claude Canon).
This commit is contained in:
Paul Beckingham
2012-04-21 13:02:31 -04:00
parent 5468365b85
commit 35122154ef
4 changed files with 28 additions and 38 deletions

View File

@@ -34,7 +34,8 @@ use Test::More tests => 4;
if (open my $fh, '>', 'dom.rc')
{
print $fh "data.location=.\n",
"dateformat=YMD\n";
"dateformat=YMD\n",
"report.info.dateformat=YMD\n";
close $fh;
ok (-r 'dom.rc', 'Created dom.rc');
}