Skip to content

Commit

Permalink
Assigned Audit Wording
Browse files Browse the repository at this point in the history
Distinguish between claimed and auto assigned Tickets in audits.
  • Loading branch information
aydreeihn committed Oct 10, 2019
1 parent 40771ea commit 30eeaf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/class.ticket.php
Expand Up @@ -2738,7 +2738,8 @@ function assignToStaff($staff, $note, $alert=true, $user=null) {

if (PluginManager::auditPlugin()) {
$thisstaff = $staff;
$type = array('type' => 'assigned', 'claim' => true);
$key = $data['claim'] ? 'claim' : 'auto';
$type = array('type' => 'assigned', $key => true); //adriane
Signal::send('object.edited', $this, $type);
}

Expand Down

0 comments on commit 30eeaf9

Please sign in to comment.