Browse Source

Fixed tag delivery.

Martin Edenhofer 10 years ago
parent
commit
d7ae804500
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/controllers/tickets_controller.rb

+ 2 - 2
app/controllers/tickets_controller.rb

@@ -270,8 +270,8 @@ class TicketsController < ApplicationController
     links.each { |item|
       link_list.push item
       if item['link_object'] == 'Ticket'
-        ticket = Ticket.lookup( :id => item['link_object_value'] )
-        assets = ticket.assets(assets)
+        linked_ticket = Ticket.lookup( :id => item['link_object_value'] )
+        assets = linked_ticket.assets(assets)
       end
     }