Fix checkAll ticket box not showing when status wasn't set - should only be hidden for the closed view

This commit is contained in:
wrongecho 2025-10-15 09:57:32 +01:00
parent 9a5a4be64a
commit 21aee98f9f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
<tr>
<td>
<?php if (isset($_GET['status']) && $_GET['status'] !== 'Closed') { ?>
<?php if ($_GET['status'] !== 'Closed') { ?>
<div class="form-check">
<input class="form-check-input" id="selectAllCheckbox" type="checkbox" onclick="checkAll(this)" onkeydown="checkAll(this)">
</div>