Disabled osticket_needs_attention()

* The flag has been repurposed in osTicket
This commit is contained in:
2Shirt 2018-09-24 15:45:52 -06:00
parent aec3e8208c
commit 4206afe0c3
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -400,7 +400,9 @@ def osticket_get_ticket_name(ticket_id):
ost_db['Errors'] = True ost_db['Errors'] = True
def osticket_needs_attention(ticket_id): def osticket_needs_attention(ticket_id):
"""Marks the ticket as "NEEDS ATTENTION" in osTicket.""" """[DISABLED] Marks the ticket as "NEEDS ATTENTION" in osTicket."""
return # This function has been DISABLED due to a repurposing of that flag
if not ticket_id: if not ticket_id:
raise GenericError raise GenericError
if not ost_db['Cursor']: if not ost_db['Cursor']: