[Vtigercrm-commits] [vtiger-commits] r7582 - /vtigercrm/trunk/modules/Contacts/DelImage.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Jun 27 10:41:11 EDT 2006
Author: richie
Date: Tue Jun 27 08:41:07 2006
New Revision: 7582
Log:
delete email attachments from hard disk
Modified:
vtigercrm/trunk/modules/Contacts/DelImage.php
Modified: vtigercrm/trunk/modules/Contacts/DelImage.php
==============================================================================
--- vtigercrm/trunk/modules/Contacts/DelImage.php (original)
+++ vtigercrm/trunk/modules/Contacts/DelImage.php Tue Jun 27 08:41:07 2006
@@ -13,6 +13,7 @@
function DelImage($id)
{
+
global $adb;
$query="delete from vtiger_attachments where attachmentsid=(select attachmentsid from vtiger_seattachmentsrel where crmid=".$id.")";
$adb->query($query);
@@ -24,6 +25,8 @@
function DelAttachment($id)
{
global $adb;
+ $selresult = $adb->query("select name,path from vtiger_attachments where attachmentsid=$id");
+ unlink($adb->query_result($selresult,0,'path').$id."_".$adb->query_result($selresult,0,'name'));
$query="delete from vtiger_seattachmentsrel where attachmentsid=".$id;
$adb->query($query);
$query="delete from vtiger_attachments where attachmentsid=".$id.")";
More information about the vtigercrm-commits
mailing list