[Vtigercrm-commits] [vtiger-commits] r9653 - /vtigercrm/branches/5.0.2/modules/Settings/DeleteCustomField.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Wed Oct 18 02:29:09 EDT 2006
Author: richie
Date: Wed Oct 18 00:29:05 2006
New Revision: 9653
Log:
Error in custom listview when a customfield related to that that view is deleted - fixed
Modified:
vtigercrm/branches/5.0.2/modules/Settings/DeleteCustomField.php
Modified: vtigercrm/branches/5.0.2/modules/Settings/DeleteCustomField.php
==============================================================================
--- vtigercrm/branches/5.0.2/modules/Settings/DeleteCustomField.php (original)
+++ vtigercrm/branches/5.0.2/modules/Settings/DeleteCustomField.php Wed Oct 18 00:29:05 2006
@@ -66,6 +66,11 @@
$deltablequery = 'drop table '.$colName;
$adb->query($deltablequery);
}
+//we have to delete the custom field from custom views - don
+$adb->query("delete from vtiger_cvcolumnlist where columnname like '%".$colName."%'");
+$adb->query("delete from vtiger_cvstdfilter where columnname like '%".$colName."%'");
+$adb->query("delete from vtiger_cvadvfilter where columnname like '%".$colName."%'");
+
header("Location:index.php?module=Settings&action=CustomFieldList&fld_module=".$fld_module."&parenttab=Settings");
?>
More information about the vtigercrm-commits
mailing list