[Vtigercrm-commits] [vtiger-commits] r11097 - /vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon May 28 11:35:42 EDT 2007
Author: jerrydgeorge
Date: Mon May 28 09:35:35 2007
New Revision: 11097
Log:
Issue in MemberOF Field Advanced Filter in CustomView has been fixed
Modified:
vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php
Modified: vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php (original)
+++ vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php Mon May 28 09:35:35 2007
@@ -1015,6 +1015,9 @@
if(($comparator == 'e' || $comparator == 's' || $comparator == 'c') && trim($adv_chk_value) == '')
{
$value .= 'vtiger_account2.accountname IS NULL or ';
+ }elseif($comparator == 'n' || $comparator == 'k' && trim($adv_chk_value) != '')
+ {
+ $value .= 'vtiger_account2.accountname IS NULL or ';
}
$value .= 'vtiger_account2.accountname';
}
More information about the vtigercrm-commits
mailing list