Changeset 627


Ignore:
Timestamp:
10/22/08 02:55:29 (5 years ago)
Author:
dgynn
Message:

commented out code that invokes method that doesn't exist
also save the session. it should get saved on one of the following redirects but that logic leaves it possible to not redirect and therefore not save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/tickettypedsystem/ticketsystem/tickettypes/uxhandler.py

    r624 r627  
    6161        if  ticket_redirect: 
    6262            del(req.session['ticket-redirect']) 
     63            req.session.save() 
    6364            if ticket_redirect == 'new': 
    6465                # create the get parameter 
    65                 new_data = {'type': self.get_ticket_type(),} 
     66                # ANDREI - there is no get_ticket_type method - DG 
     67                # DISABLED: new_data = {'type': self.get_ticket_type(),} 
     68                new_data = {} 
    6669                # redirect to new 
    6770                req.redirect(req.href.newticket(**new_data)) 
Note: See TracChangeset for help on using the changeset viewer.