summaryrefslogtreecommitdiff
path: root/FS/FS/Report
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-11-16 12:49:53 -0800
committerMark Wells <mark@freeside.biz>2013-11-16 12:49:53 -0800
commit7af50f45c514a0e9ae27c60b7aa6e9b3c8b48557 (patch)
tree705c81e7fc1ea62fe6819311e34baf6d5bd69af8 /FS/FS/Report
parent12078ded9009f44f9ea1d7ac01a38c89c4661ea7 (diff)
fix graph reports when no cust_classnum is provided, #26028, from #24776
Diffstat (limited to 'FS/FS/Report')
-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 1d60b6420..da4916176 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;
}
- '';
+ ();
}