[Vtigercrm-commits] [vtiger-commits] r11076 - /vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Mon May 28 00:47:54 EDT 2007


Author: richie
Date: Sun May 27 22:47:50 2007
New Revision: 11076

Log:
* fixes for Customview advanced filter Quotescondition check._allen 

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 Sun May 27 22:47:50 2007
@@ -754,7 +754,7 @@
 		{
 			$advft["columnname"] = $advfilterrow["columnname"];
 			$advft["comparator"] = $advfilterrow["comparator"];
-			$advft["value"] = addslashes($advfilterrow["value"]);
+			$advft["value"] = $advfilterrow["value"];
 			$advfilterlist[] = $advft;
 		}
 		return $advfilterlist;
@@ -1255,7 +1255,8 @@
 
 	function getAdvComparator($comparator,$value,$datatype = '')
 	{
-			
+	
+                $value=html_entity_decode(trim($value));
 		global $adb;
 		if($comparator == "e")
 		{





More information about the vtigercrm-commits mailing list