diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-02-25 19:31:51 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-02-25 19:31:51 -0800 |
commit | cf5c051b077e618cf5fdc6f6a31b68b7d133a966 (patch) | |
tree | 63cd858c6fe04c5bc7761d2a3bc3eba4aa31786f /FS | |
parent | 789d0834df90e8930145946705357083cec67fe3 (diff) |
add domain and locale options to command-line phone number list, RT#21054
Diffstat (limited to 'FS')
-rwxr-xr-x | FS/bin/freeside-phonenum_list | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/bin/freeside-phonenum_list b/FS/bin/freeside-phonenum_list index 800056594..aebe9d5d8 100755 --- a/FS/bin/freeside-phonenum_list +++ b/FS/bin/freeside-phonenum_list @@ -29,7 +29,7 @@ my @svc_phone = qsearch( FS::svc_phone->search(\%search) ); foreach my $svc_phone (@svc_phone) { print $svc_phone->countrycode if $opt_c; print $svc_phone->phonenum; - print ','. $svc_phone->domain if $opt_o; + print '@'. $svc_phone->domain if $opt_o; if ( $opt_l ) { my $cust_pkg = $svc_phone->cust_svc->cust_pkg; print ','. ($cust_pkg && $cust_pkg->cust_main->locale || $default_locale); |