diff options
author | ivan <ivan> | 2006-05-01 11:43:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-05-01 11:43:09 +0000 |
commit | 69506a2741c08f1f849c9650bf3650a0f6a319f0 (patch) | |
tree | fe6051343400697cb3d470f2d0ae82cf3add825a | |
parent | cf0749726a8e719909cf5e2dbe7fb0f1581ae8c3 (diff) |
fix bug with duplicate tickets showing up on customer view listing when the custom priority field was edited
-rw-r--r-- | FS/FS/TicketSystem/RT_External.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm index d951cc0e7..667f0dc2d 100644 --- a/FS/FS/TicketSystem/RT_External.pm +++ b/FS/FS/TicketSystem/RT_External.pm @@ -109,6 +109,7 @@ sub _from_customer { ON ( tickets.id = ObjectCustomFieldValues.ObjectId )"; $where = " AND content = ? + AND disabled != 1 AND ObjectType = 'RT::Ticket' AND $customfield_sql"; |