Summary:
Editing a ticket doesn't work
Detailed Description:
After installing (with the patch in bug #10371 -
http://dev.cmsmadesimple.org/bug/view/10371), after fixing the admin section
(with the fix in bug #11065 - http://dev.cmsmadesimple.org/bug/view/11065), the
'edit ticket' functionality doesn't work.
When clicking on the 'edit' icon next to a ticket, a blank page is presented.
This is caused by a bug in action.admin_newticket.php on line 65. Method
'FecthAll() is called on a query instance. This function is not defined in the
query class, but in the base_resultset class.
The bug is fixed by changing line 65 in action.admin_newticket.php to:
$messages = $query->execute();
Funny bug... This probably never worked... :)