From: khoff Date: Thu, 12 Apr 2007 17:37:41 +0000 (+0000) Subject: Fixed a problem with the %opts hash getting skewed (specifically $opt{'value'} =... X-Git-Tag: freeside_1_7_3rc1~481 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=4fae6196a7d09b7b1db79758a0b9fbf9040d4bc7;p=freeside.git Fixed a problem with the %opts hash getting skewed (specifically $opt{'value'} == 'label') when $cgi->param('agentnum') was unset. (Backport) --- 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 @@ <% include( '/elements/tr-select-agent.html', - $cgi->param('agentnum'), + $cgi->param('agentnum') ? $cgi->param('agentnum') : '', 'label' => 'Invoices for agent: ', ) %>