Update manage_incident.php

This commit is contained in:
jakani24
2024-06-25 20:15:58 +02:00
parent 1f8e3ab262
commit da47a9ca52

View File

@@ -62,7 +62,7 @@ if(isset($_GET["add_todoitem"])){
<script> <script>
function change_status(id,todo_id){ function change_status(id,todo_id){
box=document.getElementById(id); box=document.getElementById(id);
if(box!=NULL){ if(box!=null){
var status=box.checked; var status=box.checked;
fetch("manage_incident.php?update_box_id="+todo_id+"&checked="+status); fetch("manage_incident.php?update_box_id="+todo_id+"&checked="+status);
} }