From: ivan Date: Thu, 9 Dec 2004 22:23:32 +0000 (+0000) Subject: fix links to null custom fields X-Git-Tag: BEFORE_FINAL_MASONIZE~797 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=cff2163f34291d4bdafcf8c218190dfa9ba0fe7d fix links to null custom fields --- diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm index 2968a2589..be0823860 100644 --- a/FS/FS/TicketSystem/RT_External.pm +++ b/FS/FS/TicketSystem/RT_External.pm @@ -135,7 +135,12 @@ sub href_customer_tickets { $href .= 'AND%20Queue%20%3D%20%27'. $priority_field_queue. '%27%20'; } if ( defined($priority) && $field ) { - $href .= '%20AND%20%27CF.'. $field. '%27%20%3D%20%27'. $priority. '%27%20'; + $href .= '%20AND%20%27CF.'. $field. '%27%20'; + if ( $priority ) { + $href .= '%3D%20%27'. $priority. '%27%20'; + } else { + $href .= 'IS%20%27NULL%27%20'; + } } $href .= '&Rows=100'.