Fix client delete

This commit is contained in:
wrongecho 2025-11-05 10:24:39 +00:00
parent 56f32a4da2
commit 49d3dbad9a
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<div class="mb-4" style="text-align: center;">
<i class="far fa-10x fa-times-circle text-danger mb-3 mt-3"></i>
<h2>Are you really, really, really sure?</h2>
<h6 class="mb-4 text-secondary">Do you really want to <b>delete <?php echo $client_name; ?> and ALL associated data</b>? This includes <?php echo $client_name; ?>'s documents, tickets, files, financial data, logs, etc. <br><br>This process cannot be undone.</h6>
<h6 class="mb-4 text-secondary">Do you really want to <b>delete <i><?php echo $client_name; ?></i> and ALL associated data</b>? This includes <i><?php echo $client_name; ?></i>'s documents, tickets, files, payments, invoices, logs, etc.<br>See <a href="https://forum.itflow.org/d/1147-deleting-a-client-deletes-payments" target="_blank">this</a> forum post.<br><br>This process cannot be undone.</h6>
<div class="form-group">
<input type="hidden" id="clientName<?php echo $client_id ?>" value="<?php echo $client_name; ?>">
<input class="form-control" type="text" id="clientNameProvided<?php echo $client_id ?>" onkeyup="validateClientNameDelete(<?php echo $client_id ?>)" placeholder="Type '<?php echo $client_name; ?>' to confirm data deletion">
@ -17,4 +17,4 @@
</div>
</div>
</div>
<script src="../js/client_delete_confirm.js"></script>
<script src="/agent/js/client_delete_confirm.js"></script>

View File

@ -312,7 +312,7 @@ if (isset($_GET['delete_client'])) {
flash_alert("Client <strong>$client_name</strong> deleted along with all associated data", 'error');
redirect();
redirect('clients.php');
}