From: ivan Date: Wed, 7 Apr 2010 06:20:53 +0000 (+0000) Subject: fix capitalization of RT tables and columns - mysql fix X-Git-Tag: root_of_svc_elec_features~313 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=c354e082415cd3fe1c48301bd2d5e75af5efedcc;p=freeside.git fix capitalization of RT tables and columns - mysql fix --- diff --git a/FS/FS/TicketSystem/RT_Internal.pm b/FS/FS/TicketSystem/RT_Internal.pm index b1121efde..f47648e7f 100644 --- a/FS/FS/TicketSystem/RT_Internal.pm +++ b/FS/FS/TicketSystem/RT_Internal.pm @@ -15,10 +15,10 @@ $DEBUG = 0; $me = '[FS::TicketSystem::RT_Internal]'; sub sql_num_customer_tickets { - "( select count(*) from tickets - join links on ( tickets.id = links.localbase ) - where ( status = 'new' or status = 'open' or status = 'stalled' ) - and target = 'freeside://freeside/cust_main/' || custnum + "( select count(*) from Tickets + join Links on ( Tickets.id = Links.LocalBase ) + where ( Status = 'new' or Status = 'open' or Status = 'stalled' ) + and Target = 'freeside://freeside/cust_main/' || custnum )"; }