From: ivan Date: Wed, 13 Sep 2006 14:57:06 +0000 (+0000) Subject: yes, that does appear to be the fix for all this trouble. s/qsearchs/qsearch/ X-Git-Tag: TRIXBOX_2_6~962 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=abb4b384799691f8eb1f77512823d66487366208 yes, that does appear to be the fix for all this trouble. s/qsearchs/qsearch/ --- diff --git a/FS/FS/cust_bill_ApplicationCommon.pm b/FS/FS/cust_bill_ApplicationCommon.pm index fb06a4b1f..fa5f53b87 100644 --- a/FS/FS/cust_bill_ApplicationCommon.pm +++ b/FS/FS/cust_bill_ApplicationCommon.pm @@ -194,7 +194,7 @@ Returns all the specific line item applications for this invoice application. sub lineitem_applications { my $self = shift; my $primary_key = dbdef->table($self->table)->primary_key; - qsearchs({ + qsearch({ 'table' => $self->lineitem_breakdown_table, 'hashref' => { $primary_key => $self->$primary_key() }, });