diff options
author | khoff <khoff> | 2007-05-11 23:18:53 +0000 |
---|---|---|
committer | khoff <khoff> | 2007-05-11 23:18:53 +0000 |
commit | f145ba710c004d0735caae621004d2776b178a6e (patch) | |
tree | c58fff1fc91909b923ee23bffccb481decdea412 /httemplate/search/report_cust_bill.html | |
parent | a1e4aa786071d585f873b9aa3531dd605d7bc57b (diff) |
Fix (hopefully) all uses of /elements/tr-select-agent.html where agentnum may be undefined.
Diffstat (limited to 'httemplate/search/report_cust_bill.html')
-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 74b96cc90..d6848921e 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: ', ) %> |