diff options
author | khoff <khoff> | 2007-04-12 17:37:41 +0000 |
---|---|---|
committer | khoff <khoff> | 2007-04-12 17:37:41 +0000 |
commit | 4fae6196a7d09b7b1db79758a0b9fbf9040d4bc7 (patch) | |
tree | 6ee0eca1a9944fc58132d0eb101137e3fedc853f | |
parent | 52102268bc5698130474edfda0c3b380426cf325 (diff) |
Fixed a problem with the %opts hash getting skewed (specifically $opt{'value'} == 'label') when $cgi->param('agentnum') was unset. (Backport)
-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: ', ) %> |