[Vtigercrm-commits] [vtiger-commits] r6363 - in /vtigercrm/trunk/modules: Contacts/Contact.php Potentials/Opportunity.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed May 24 14:19:44 EDT 2006


Author: saraj
Date: Wed May 24 12:19:39 2006
New Revision: 6363

Log:
* Removed the unwanted comma which cause error during import when we have custom field

Modified:
    vtigercrm/trunk/modules/Contacts/Contact.php
    vtigercrm/trunk/modules/Potentials/Opportunity.php

Modified: vtigercrm/trunk/modules/Contacts/Contact.php
==============================================================================
--- vtigercrm/trunk/modules/Contacts/Contact.php (original)
+++ vtigercrm/trunk/modules/Contacts/Contact.php Wed May 24 12:19:39 2006
@@ -515,7 +515,7 @@
 		$log->debug("Entering create_export_query(".$order_by.",".$where.") method ...");
 		if($this->checkIfCustomTableExists('contactscf'))
 		{
-	   $query =  $this->constructCustomQueryAddendum('contactscf','Contacts') .",
+			$query =  $this->constructCustomQueryAddendum('contactscf','Contacts') ."
                                 contactdetails.*, contactaddress.*,
                                 account.accountname account_name,
                                 users.user_name assigned_user_name

Modified: vtigercrm/trunk/modules/Potentials/Opportunity.php
==============================================================================
--- vtigercrm/trunk/modules/Potentials/Opportunity.php (original)
+++ vtigercrm/trunk/modules/Potentials/Opportunity.php Wed May 24 12:19:39 2006
@@ -159,7 +159,8 @@
 
 		if($this->checkIfCustomTableExists('potentialscf'))
 		{
-			$query = $this->constructCustomQueryAddendum('potentialscf','Potentials') .",                                potential.*,
+			$query = $this->constructCustomQueryAddendum('potentialscf','Potentials') ."
+				potential.*,
 				account.accountname account_name,
 				users.user_name assigned_user_name
 					FROM potential





More information about the vtigercrm-commits mailing list