narrow select to avoid pickup up wrong id field
authorivan <ivan>
Thu, 9 Dec 2004 12:18:32 +0000 (12:18 +0000)
committerivan <ivan>
Thu, 9 Dec 2004 12:18:32 +0000 (12:18 +0000)
FS/FS/TicketSystem/RT_External.pm

index 5424a71..204e7f4 100644 (file)
@@ -44,7 +44,9 @@ sub customer_tickets {
   #$dbh ||= create one from some config options
 
   my( $from_sql, @param) = $self->_from_customer( $custnum, $priority );
-  my $sql = "select * $from_sql order by priority desc limit $limit";
+  my $sql = "select tickets.*, queues.name".
+            ( length($priority) ? ", ticketcustomfieldvalues.content" : '' ).
+            " $from_sql order by priority desc limit $limit";
   my $sth = $dbh->prepare($sql) or die $dbh->errstr. "preparing $sql";
   $sth->execute(@param)         or die $sth->errstr. "executing $sql";