summaryrefslogtreecommitdiff
path: root/FS/FS/TicketSystem/RT_External.pm
diff options
context:
space:
mode:
authorivan <ivan>2004-12-06 14:13:23 +0000
committerivan <ivan>2004-12-06 14:13:23 +0000
commit30fcc76ecfc50dc299bbb86a217f88ffa7de5b64 (patch)
tree28e8158da64cd73102932bb5960f04d0fd1d72cd /FS/FS/TicketSystem/RT_External.pm
parent0358f6658ac510379dcbce512f87ec1b43ef61ed (diff)
and forgot to include the sql for counting tickets with severities...
Diffstat (limited to 'FS/FS/TicketSystem/RT_External.pm')
-rw-r--r--FS/FS/TicketSystem/RT_External.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm
index a105c27..26420de 100644
--- a/FS/FS/TicketSystem/RT_External.pm
+++ b/FS/FS/TicketSystem/RT_External.pm
@@ -53,6 +53,7 @@ sub num_customer_tickets {
select count(*) from tickets
where ( status = 'new' or status = 'open' or status = 'stalled' )
and target = 'freeside://freeside/cust_main/$custnum'
+ $priority_sql
";
my $sth = $dbh->prepare($sql) or die $dbh->errstr;