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

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed Apr 11 10:23:45 EDT 2007


Author: saraj
Date: Wed Apr 11 08:23:39 2007
New Revision: 10641

Log:
The field value is displayed as None In List view. Fixes #3330

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 Wed Apr 11 08:23:39 2007
@@ -1668,7 +1668,10 @@
 	{
 		$value = '<span align="right">'.$value.'</div>';
 	}
-
+	if($value == '--None--')
+	{
+	        $value = '';
+	}
 	$log->debug("Exiting getValue method ...");
 	return $value; 
 }





More information about the vtigercrm-commits mailing list