[Vtigercrm-commits] [vtiger-commits] r10437 - /vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Thu Mar 15 02:53:20 EDT 2007


Author: saraj
Date: Thu Mar 15 00:53:13 2007
New Revision: 10437

Log:
fix for customfields of type Multi-Select Combo Box and Skype not displayed properly in ListView. Fixes #3079 --Minnie

Modified:
    vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php

Modified: vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php (original)
+++ vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php Thu Mar 15 00:53:13 2007
@@ -1324,6 +1324,14 @@
 	elseif($uitype == 98)
 	{
 		$value = '<a href="index.php?action=RoleDetailView&module=Settings&parenttab=Settings&roleid='.$temp_val.'">'.getRoleName($temp_val).'</a>';  
+	}
+	elseif($uitype == 33)
+	{
+		$value = ($temp_val != "") ? str_ireplace(' |##| ',', ',$temp_val) : "";
+	}
+	elseif($uitype == 85)
+	{
+		$value = ($temp_val != "") ? "<a href='skype:{$temp_val}?call'>{$temp_val}</a>" : "";
 	}
 	else
 	{





More information about the vtigercrm-commits mailing list