Files
crm.e5.pl/modules/EcmPriceBooks/DeleteCustomView.php

8 lines
227 B
PHP
Raw Normal View History

2024-04-27 09:23:34 +02:00
<?
$sugarEntry=true;
global $db;
$db->query("delete from ecmpricebooks_customview where id='".$_REQUEST['record']."'");
header("Location: index.php?module=EcmPriceBooks&action=DetailView&record=".$_COOKIE['pricebook_id']);
?>