Fix syntax error with unassigned ticket
This commit is contained in:
parent
fb18ee6f54
commit
fa0262bc0a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue