Fix syntax error with unassigned ticket

hg/feature/cdb-packed
botanic 10 years ago
parent 8e46cd7ab9
commit f7d338bdf6

@ -125,7 +125,7 @@ class Assigned{
*/
public function delete() {
$dbl = new DBLayer("lib");
$dbl->delete("`assigned`", array('user_id' => $this->getUser() ,'ticket_id' => $this->getTicket(), "`User` = :user_id and `Ticket` = :ticket_id"));
$dbl->delete("`assigned`", array('user_id' => $this->getUser() ,'ticket_id' => $this->getTicket()), "`User` = :user_id and `Ticket` = :ticket_id");
}
/**

Loading…
Cancel
Save