Files
crm.twinpol.com/modules/EcmTransactions/RemoveRelations.php
2025-05-12 15:44:39 +00:00

8 lines
251 B
PHP
Executable File

<?php
if($_REQUEST['record']!=''){
$t=new EcmTransaction();
$t->retrieve($_REQUEST['record']);
$t->RemoveRelations();
}
header('Location: index.php?module=EcmTransactions&action=DetailView&record='.$_REQUEST['record']);
?>