diff options
author | Mark Wells <mark@freeside.biz> | 2015-08-31 14:55:34 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-08-31 14:55:57 -0700 |
commit | d0373d64f79a086c6fbb95e2fac6ec542f3d928f (patch) | |
tree | f247ab747e0abc1dddfbeb64dc1735b863a028cf /FS | |
parent | 703681fd46e80770d2aeee6062ae9025f4c8baae (diff) |
one more repeatability fix + documentation, #37340
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cdr.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index 1a3666099..775c79114 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -1463,7 +1463,7 @@ as keys (for use with part_pkg::voip_cdr) and "pretty" format names as values. sub invoice_formats { map { ($_ => $export_names{$_}->{'name'}) } grep { $export_names{$_}->{'invoice_header'} } - keys %export_names; + sort keys %export_names; } =item invoice_header FORMAT |