diff options
-rw-r--r-- | FS/FS/TicketSystem/RT_External.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm index dda835cc1..ea9c2b5a9 100644 --- a/FS/FS/TicketSystem/RT_External.pm +++ b/FS/FS/TicketSystem/RT_External.pm @@ -270,7 +270,8 @@ sub queue { my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql"; $sth->execute($queueid) or die $sth->errstr. " executing $sql"; - $sth->fetchrow_arrayref->[0]; + my $rows = $sth->fetchrow_arrayref; + $rows ? $rows->[0] : ''; } |