diff options
author | khoff <khoff> | 2007-03-05 19:48:16 +0000 |
---|---|---|
committer | khoff <khoff> | 2007-03-05 19:48:16 +0000 |
commit | a29e87197c593e4e6b9eb8e66bf03ea61006a5af (patch) | |
tree | bc20352723c36ab26c93a3cb2f08f98771787ffd /httemplate/search | |
parent | a9df3b5d93e0f952ba3234778bd3f3b07413b70d (diff) |
Fixed a problem with the %opts hash getting skewed (specifically $opt{'value'} == 'label') when $cgi->param('agentnum') was unset.
Diffstat (limited to 'httemplate/search')
-rw-r--r-- | httemplate/search/report_cust_bill.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/report_cust_bill.html b/httemplate/search/report_cust_bill.html index 4fa09f96c..74b96cc90 100644 --- a/httemplate/search/report_cust_bill.html +++ b/httemplate/search/report_cust_bill.html @@ -5,7 +5,7 @@ <TABLE> <% include( '/elements/tr-select-agent.html', - $cgi->param('agentnum'), + $cgi->param('agentnum') ? $cgi->param('agentnum') : '', 'label' => 'Invoices for agent: ', ) %> |