0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
global
/
modules
/
Users
/
[
Home
]
File: UpdateDomainName.php
<?php /** * this file is added for netsol customization * it saves the */ global $adb; $semodule = $_REQUEST['semodule']; if($semodule == 'domainname'){ $domainname = $_REQUEST['domainname']; $sql = "delete from vtiger_emaildomainname"; $adb->query($sql); //delete older records (if any) $sql = "insert into vtiger_emaildomainname values ('$domainname')"; $adb->query($sql); } ?>