[freeside-commits]
freeside/httemplate/search report_cust_bill.html, 1.5, 1.6
Kristian Hoffmann,420,,
khoff at wavetail.420.am
Mon Mar 5 11:48:19 PST 2007
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail:/tmp/cvs-serv27152/httemplate/search
Modified Files:
report_cust_bill.html
Log Message:
Fixed a problem with the %opts hash getting skewed (specifically $opt{'value'} == 'label') when $cgi->param('agentnum') was unset.
Index: report_cust_bill.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/report_cust_bill.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- report_cust_bill.html 3 Feb 2007 11:36:30 -0000 1.5
+++ report_cust_bill.html 5 Mar 2007 19:48:16 -0000 1.6
@@ -5,7 +5,7 @@
<TABLE>
<% include( '/elements/tr-select-agent.html',
- $cgi->param('agentnum'),
+ $cgi->param('agentnum') ? $cgi->param('agentnum') : '',
'label' => 'Invoices for agent: ',
)
%>
More information about the freeside-commits
mailing list