From: Mark Wells Date: Sat, 16 Nov 2013 20:50:07 +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=cf5608f9ce868ccb91244f6cab58022869fc7c17;hp=332028ae28351dee74715c651fd73948df0ded69;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; } - ''; + (); }