This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
if($_REQUEST['mass']!=""){
$ids=$_REQUEST['mass'];
$contacts = new Contact();
$contacts=$contacts->get_full_list("", "contacts.id in ('".implode("','",$ids)."')");
foreach ($contacts as $contact){
$contact->mark_deleted($contact->id);
}
header("Location: index.php?module=Contacts&action=index");
}
?>