Tickets Fixed The field 'start_time' was not recognised.

Alpha1

Member
When converting a conversation to ticket I get this error. There is no new ticket and the conversation is deleted.
 
That's a silly typo. You can apply a quick fix for this by going to library/NixFifty/Tickets/XenForo/Model/Conversation.php and then editing line 32 from:

PHP:
$ticketDw->set('start_time', $conversation['start_date']);

to:

PHP:
$ticketDw->set('start_date', $conversation['start_date']);
 
Back
Top