diff -Naur when_dist/when when_dist-new//when --- when_dist/when 2011-03-12 19:51:50.000000000 +0200 +++ when_dist-new//when 2012-03-09 12:43:12.793928589 +0200 @@ -2374,7 +2374,7 @@ my ($y,$m,$d,$t) = $when->array; if ($use_month_names) {$m=month_name($m)} if (length($d)==1) {$d=" $d"} - my $result = $y.$date_delimiter.$m.$date_delimiter.$d; + my $result = $d.$date_delimiter.$m.$date_delimiter.$y; if ($t ne '') {$result = $result . ' '.time_string_human($t)} return $result; }