summaryrefslogtreecommitdiff
path: root/FS/FS/cust_bill_ApplicationCommon.pm
diff options
context:
space:
mode:
authorivan <ivan>2006-09-13 14:57:06 +0000
committerivan <ivan>2006-09-13 14:57:06 +0000
commitabb4b384799691f8eb1f77512823d66487366208 (patch)
treebcecea511d74dc85ddd8bfa363edbebd6a6a5fce /FS/FS/cust_bill_ApplicationCommon.pm
parentd77dad830dda5fbe6d807445e09fe6770efdb550 (diff)
yes, that does appear to be the fix for all this trouble. s/qsearchs/qsearch/
Diffstat (limited to 'FS/FS/cust_bill_ApplicationCommon.pm')
-rw-r--r--FS/FS/cust_bill_ApplicationCommon.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill_ApplicationCommon.pm b/FS/FS/cust_bill_ApplicationCommon.pm
index fb06a4b..fa5f53b 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() },
});