summaryrefslogtreecommitdiff
path: root/FS/FS/TicketSystem
diff options
context:
space:
mode:
authormark <mark>2011-06-28 21:12:36 +0000
committermark <mark>2011-06-28 21:12:36 +0000
commitf4a49642af5d6de9908f8fb99570c492ae68cccc (patch)
treee9287bae1621f6ce5ed88c318103b3b316616d6a /FS/FS/TicketSystem
parent61a65ecdb3fa33392a258df1e38fc9a37d750b52 (diff)
further cleanup, #13199
Diffstat (limited to 'FS/FS/TicketSystem')
-rw-r--r--FS/FS/TicketSystem/RT_Internal.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/TicketSystem/RT_Internal.pm b/FS/FS/TicketSystem/RT_Internal.pm
index 6755415..31a6715 100644
--- a/FS/FS/TicketSystem/RT_Internal.pm
+++ b/FS/FS/TicketSystem/RT_Internal.pm
@@ -172,7 +172,8 @@ sub customer_tickets {
}
sub num_customer_tickets {
- my $Tickets = _customer_tickets_search(@_);
+ my ( $self, $custnum, $priority ) = @_;
+ my $Tickets = $self->_customer_tickets_search($custnum, 0, $priority);
return $Tickets->CountAll;
}