[Vtigercrm-commits] [vtiger-commits] r9773 - /vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Nov 6 05:55:17 EST 2006
Author: richie
Date: Mon Nov 6 03:55:14 2006
New Revision: 9773
Log:
fixes made to show emails even the values are empty
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 Nov 6 03:55:14 2006
@@ -1112,6 +1112,9 @@
}elseif(trim($value) == "" && $datatype == "V")
{
$rtvalue = " = ".$adb->quote($value);
+ }elseif(trim($value) == "" && $datatype == "E")
+ {
+ $rtvalue = " = ".$adb->quote($value);
}else
{
$rtvalue = " is NULL";
@@ -1126,6 +1129,9 @@
{
$rtvalue = " <> ".$adb->quote($value);
}elseif(trim($value) == "" && $datatype == "V")
+ {
+ $rtvalue = " <> ".$adb->quote($value);
+ }elseif(trim($value) == "" && $datatype == "E")
{
$rtvalue = " <> ".$adb->quote($value);
}else
More information about the vtigercrm-commits
mailing list