mirror of https://github.com/itflow-org/itflow
update tickets_list.php
This commit is contained in:
parent
b31d1eba6a
commit
04fac54987
|
|
@ -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";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue