mirror of
https://github.com/itflow-org/itflow
synced 2026-09-03 21:35:12 +00:00
When opening a ticket on the Agent Area automatically assign ticket to self but the option to Unusassigned remains
This commit is contained in:
@@ -161,7 +161,7 @@ ob_start();
|
||||
while ($row = mysqli_fetch_assoc($sql)) {
|
||||
$user_id = intval($row['user_id']);
|
||||
$user_name = escapeHtml($row['user_name']); ?>
|
||||
<option value="<?= $user_id ?>"><?= $user_name ?></option>
|
||||
<option <?php if ($session_user_id == $user_id) { echo "selected"; } ?> value="<?= $user_id ?>"><?= $user_name ?></option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user