update tickets_list.php

This commit is contained in:
Hugo Sampaio 2025-01-29 16:17:29 -03:00
parent b31d1eba6a
commit 04fac54987
1 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@
<tr> <tr>
<td> <td>
<div class="form-check"> <div class="form-check">
<input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)"> <input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)" onkeydown="checkAll(this)">
</div> </div>
</td> </td>
<th> <th>
@ -262,12 +262,12 @@
// Edit actions, for open tickets // Edit actions, for open tickets
if (empty($ticket_closed_at)) { if (empty($ticket_closed_at)) {
require "modals/ticket_assign_modal.php"; require_once "modals/ticket_assign_modal.php";
require "modals/ticket_edit_priority_modal.php"; require_once "modals/ticket_edit_priority_modal.php";
if ($config_module_enable_accounting) { if ($config_module_enable_accounting) {
require "modals/ticket_edit_billable_modal.php"; require_once "modals/ticket_edit_billable_modal.php";
} }
} }
} }