From: Mark Wells Date: Sat, 16 Nov 2013 20:49:53 +0000 (-0800) Subject: fix graph reports when no cust_classnum is provided, #26028, from #24776 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=7af50f45c514a0e9ae27c60b7aa6e9b3c8b48557;p=freeside.git fix graph reports when no cust_classnum is provided, #26028, from #24776 --- 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; } - ''; + (); }