summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin DeVuyst <justin@devuyst.com>2017-03-08 17:00:18 -0500
committerJustin DeVuyst <justin@devuyst.com>2017-03-08 17:00:22 -0500
commit46d51b13bdc0b06f1894c1239fdb6f10cb9ad489 (patch)
tree51806c245d7d8afabc163563b1391884b75307c4
parentd6d1c1c9b3ee0fd5bbeba5e8f59d6ac0241ebfb0 (diff)
Use "" instead of undef. See RT#24899.
-rwxr-xr-xhttemplate/browse/cust_attachment.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/browse/cust_attachment.html b/httemplate/browse/cust_attachment.html
index bc9597f24..7330c05a4 100755
--- a/httemplate/browse/cust_attachment.html
+++ b/httemplate/browse/cust_attachment.html
@@ -91,7 +91,7 @@ my $orderby = $cgi->param('orderby') || 'custnum';
my $query = {
table => 'cust_attachment',
- hashref => { disabled => $disabled ? { op => '>', value => 0 } : undef, },
+ hashref => { disabled => $disabled ? { op => '>', value => 0 } : '', },
order_by => "ORDER BY $orderby",
addl_from => 'JOIN cust_main USING (custnum)',
extra_sql => ' AND ' . $curuser->agentnums_sql,