diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-02-24 18:43:55 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-24 18:43:55 -0800 |
commit | a3c8a7c5be8650f5854a1d89f1b76d21d5cfb1a1 (patch) | |
tree | daa45156660bed3784f13bdc7ed8b96b120de6cd | |
parent | 8841199eb48ef43c87524680eb387f6973a5d0fa (diff) |
noting false laziness
-rw-r--r-- | FS/FS/Record.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 92fb89665..35ed6f7a8 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -489,6 +489,8 @@ sub qsearch { $sth->finish; + #below was refactored out to _from_hashref, this should use it at some point + my @return; if ( eval 'scalar(@FS::'. $table. '::ISA);' ) { if ( eval 'FS::'. $table. '->can(\'new\')' eq \&new ) { |