diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-06-03 11:44:07 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-06-03 11:44:07 -0700 |
commit | 92b9791e93ad2de8ad60df75e0e342dac43b845a (patch) | |
tree | 9f384fd4a042b039cc2103a60a5518199f6f52f6 /httemplate/elements | |
parent | 62f9085f731b12a25db4418b1b9bf6fb24d01d07 (diff) |
fix quotations vs. per-package contacts, RT#23165
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-select-contact.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/tr-select-contact.html b/httemplate/elements/tr-select-contact.html index d6bc67f36..e37d26d1b 100644 --- a/httemplate/elements/tr-select-contact.html +++ b/httemplate/elements/tr-select-contact.html @@ -138,7 +138,7 @@ if ( $cgi->param('error') ) { if ( length($opt{'curr_value'}) ) { $contactnum = $opt{'curr_value'}; } elsif ($prospect_main) { - my @cust_contact = $prospect_main->cust_contact; + my @cust_contact = $prospect_main->contact; $contactnum = $cust_contact[0]->contactnum if scalar(@cust_contact)==1; } else { #$cust_main $cgi->param('contactnum') =~ /^(\-?\d*)$/ or die "illegal contactnum"; |