diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-10-08 13:46:57 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-10-08 13:46:57 -0700 |
commit | 208cb71d0313f755107fa677998c8f5073d2cedf (patch) | |
tree | 01d2af1aa6b4fd14822b92b4e785cb9e613c7c57 | |
parent | 4051c7fc24664dbde6e007a1e5c4965d87419517 (diff) |
remove fax from short contact info, RT#25536
-rw-r--r-- | httemplate/elements/contact.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html index ef74481c0..87e15debe 100644 --- a/httemplate/elements/contact.html +++ b/httemplate/elements/contact.html @@ -135,7 +135,7 @@ tie my %label, 'Tie::IxHash', my $first = 0; foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) { - next if $phone_type->typename eq 'Home'; + next if $phone_type->typename =~ /^(Home|Fax)$/; my $f = 'phonetypenum'.$phone_type->phonetypenum; $label{$f} = $phone_type->typename. ' phone'; $size{$f} = $first++ ? 10 : 15; |