mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
Fix bug caused by issue #129 - ticket followup titles being set incorrectly.
Thanks to Lukeman for the fix. Closes Issue #130.
This commit is contained in:
parent
d77d962332
commit
c892699744
@ -47,3 +47,6 @@ lukeman for the patch.
|
|||||||
|
|
||||||
2010-01-26 r154 Fix bug in the code from Issue #102 where TicketCC's couldn't
|
2010-01-26 r154 Fix bug in the code from Issue #102 where TicketCC's couldn't
|
||||||
be deleted. Thanks again to lukeman.
|
be deleted. Thanks again to lukeman.
|
||||||
|
|
||||||
|
2010-01-31 r155 Fix bug caused by issue #129 - ticket followup titles being
|
||||||
|
set incorrectly. Thanks to Lukeman for the fix.
|
||||||
|
@ -174,7 +174,7 @@ def update_ticket(request, ticket_id, public=False):
|
|||||||
}
|
}
|
||||||
ticket.assigned_to = new_user
|
ticket.assigned_to = new_user
|
||||||
reassigned = True
|
reassigned = True
|
||||||
elif owner == 0:
|
elif owner == 0 and ticket.assigned_to is not None:
|
||||||
f.title = _('Unassigned')
|
f.title = _('Unassigned')
|
||||||
ticket.assigned_to = None
|
ticket.assigned_to = None
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user