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_pay_batch.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_pay_batch.html')
-rw-r--r-- | httemplate/search/report_cust_pay_batch.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/report_cust_pay_batch.html b/httemplate/search/report_cust_pay_batch.html index f57a9557e..4e8937cac 100644 --- a/httemplate/search/report_cust_pay_batch.html +++ b/httemplate/search/report_cust_pay_batch.html @@ -16,7 +16,7 @@ </TR> <% include( '/elements/tr-select-agent.html', - $cgi->param('agentnum'), + ($cgi->param('agentnum') || ''), 'label' => 'for agent: ', ) %> |