diff options
author | Mark Wells <mark@freeside.biz> | 2015-01-31 15:28:52 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-01-31 16:29:54 -0800 |
commit | d46254f9b36873e457424eefdcf3610b71ef889d (patch) | |
tree | e7982887bd8e5d12ca32ceafc12404d17392dca4 /httemplate/edit/process | |
parent | b2d79135127e961869a05b936b9d33b1bef135df (diff) |
fix sprintf error, mostly #31273
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r-- | httemplate/edit/process/quick-cust_pkg.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/quick-cust_pkg.cgi b/httemplate/edit/process/quick-cust_pkg.cgi index 38d5c4486..67cdb87e8 100644 --- a/httemplate/edit/process/quick-cust_pkg.cgi +++ b/httemplate/edit/process/quick-cust_pkg.cgi @@ -144,7 +144,7 @@ if ( $quotationnum ) { $quotation_pkg->prospectnum($prospect_main->prospectnum) if $prospect_main; #XXX handle new location - $error = $quotation_pkg->insert; + $error = $quotation_pkg->insert || $quotation_pkg->estimate; } else { |