summaryrefslogtreecommitdiff
path: root/FS/FS/Report/Table.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-11-16 12:50:07 -0800
committerMark Wells <mark@freeside.biz>2013-11-16 12:50:07 -0800
commitcf5608f9ce868ccb91244f6cab58022869fc7c17 (patch)
tree0b466befd2d20987e9ccf11ad1d110040ba607fd /FS/FS/Report/Table.pm
parent332028ae28351dee74715c651fd73948df0ded69 (diff)
fix graph reports when no cust_classnum is provided, #26028, from #24776
Diffstat (limited to 'FS/FS/Report/Table.pm')
-rw-r--r--FS/FS/Report/Table.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Report/Table.pm b/FS/FS/Report/Table.pm
index 1d60b64..da49161 100644
--- a/FS/FS/Report/Table.pm
+++ b/FS/FS/Report/Table.pm
@@ -757,7 +757,7 @@ sub with_cust_classnum {
return 'cust_main.classnum in('. join(',',@$classnums) .')'
if @$classnums;
}
- '';
+ ();
}