diff options
author | Mark Wells <mark@freeside.biz> | 2015-10-08 23:47:13 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-10-08 23:47:13 -0700 |
commit | c729bf54b3e1dc6c63ee2e39843cd304aa825f0c (patch) | |
tree | 3f7bcdca0f00ac5be962544459901eb957b8ca8b | |
parent | 294e2ce31d6bbd2784a812d20438f9b223de0490 (diff) | |
parent | 6b1a8c7316892165fa4dc8b66bb962bf113aa3d8 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
-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; |