[Vtigercrm-commits] [vtiger-commits] r9209 - /vtigercrm/trunk/soap/vtigerolservice.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed Aug 30 14:28:27 EDT 2006


Author: richie
Date: Wed Aug 30 12:28:17 2006
New Revision: 9209

Log:
Issue in Plugin has been fixed --Jeri

Modified:
    vtigercrm/trunk/soap/vtigerolservice.php

Modified: vtigercrm/trunk/soap/vtigerolservice.php
==============================================================================
--- vtigercrm/trunk/soap/vtigerolservice.php (original)
+++ vtigercrm/trunk/soap/vtigerolservice.php Wed Aug 30 12:28:17 2006
@@ -601,13 +601,13 @@
     			if($cntrow["middlename"] != "")
     			{
     				$contact->column_fields[lastname]=$cntrow["middlename"]." ".$cntrow["lastname"];
-    			}elseif($cntrow["middlename"] != "")
+    			}elseif($cntrow["lastname"] != "")
     			{
     				$contact->column_fields[lastname]=$cntrow["lastname"];
     			}else
     			{
     			   $contact->column_fields[lastname]=$cntrow["firstname"]." ".$cntrow["middlename"]." ".$cntrow["lastname"];
-          }
+          		}
     
     			$contact->column_fields[birthday]= in_array('birthday',$permitted_lists) ? getDisplayDate($cntrow["birthdate"]) : "";
     			$contact->column_fields[email]=in_array('email',$permitted_lists) ? $cntrow["emailaddress"] : "";
@@ -688,7 +688,7 @@
 			}else
 			{
 				$contact->column_fields[lastname]=$cntrow["firstname"]." ".$cntrow["middlename"]." ".$cntrow["lastname"];
-      }
+      			}
       
 			$contact->column_fields[birthday]= in_array('birthday',$permitted_lists) ? getDisplayDate($cntrow["birthdate"]) : "";
 			$contact->column_fields[email]= in_array('email',$permitted_lists) ? $cntrow["emailaddress"] : "";





More information about the vtigercrm-commits mailing list