Skip to content
Snippets Groups Projects
Commit 772fecca authored by Kevin Falcone's avatar Kevin Falcone
Browse files

Merge branch '4.0/transaction-cf-limit-on-bulk-update' into 4.0-trunk

parents d3ee8fd0 3a4ce59e
No related branches found
Tags rt-4.0.14rc1
No related merge requests found
......@@ -273,7 +273,6 @@ while ( my $ticket = $Tickets->Next ) {
#Iterate through each ticket we've been handed
my @linkresults;
my %queues;
$Tickets->RedoSearch();
......@@ -293,7 +292,6 @@ unless ( $ARGS{'AddMoreAttach'} ) {
#Update the links
$ARGS{'id'} = $Ticket->id;
$queues{ $Ticket->QueueObj->Id }++;
my @updateresults = ProcessUpdateMessage(
TicketObj => $Ticket,
......@@ -397,7 +395,7 @@ unless ( $ARGS{'AddMoreAttach'} ) {
my $TxnCFs = RT::CustomFields->new( $session{CurrentUser} );
$TxnCFs->LimitToLookupType( RT::Transaction->CustomFieldLookupType );
$TxnCFs->LimitToGlobalOrObjectId( sort keys %queues );
$TxnCFs->LimitToGlobalOrObjectId( keys %$seen_queues );
</%INIT>
<%args>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment