mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-16 19:01:21 +02: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:
@ -174,7 +174,7 @@ def update_ticket(request, ticket_id, public=False):
|
||||
}
|
||||
ticket.assigned_to = new_user
|
||||
reassigned = True
|
||||
elif owner == 0:
|
||||
elif owner == 0 and ticket.assigned_to is not None:
|
||||
f.title = _('Unassigned')
|
||||
ticket.assigned_to = None
|
||||
|
||||
|
Reference in New Issue
Block a user