[freeside-commits] freeside/httemplate/search report_cust_bill.html, 1.5, 1.5.2.1
Kristian Hoffmann,420,,
khoff at wavetail.420.am
Thu Apr 12 10:37:44 PDT 2007
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail:/tmp/cvs-serv8781/httemplate/search
Modified Files:
Tag: FREESIDE_1_7_BRANCH
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. (Backport)
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.5.2.1
diff -u -d -r1.5 -r1.5.2.1
--- report_cust_bill.html 3 Feb 2007 11:36:30 -0000 1.5
+++ report_cust_bill.html 12 Apr 2007 17:37:41 -0000 1.5.2.1
@@ -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