[Vtigercrm-commits] [vtiger-commits] r7740 - /vtigercrm/trunk/data/CRMEntity.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Mon Jul 3 14:18:15 EDT 2006


Author: saraj
Date: Mon Jul  3 12:18:10 2006
New Revision: 7740

Log:
* Modified to get the assigned_user_id from column_fields instead of request which had caused problem in ajas edit

Modified:
    vtigercrm/trunk/data/CRMEntity.php

Modified: vtigercrm/trunk/data/CRMEntity.php
==============================================================================
--- vtigercrm/trunk/data/CRMEntity.php (original)
+++ vtigercrm/trunk/data/CRMEntity.php Mon Jul  3 12:18:10 2006
@@ -981,7 +981,7 @@
 	global $current_user;
 
         $current_time = date('Y-m-d H:i:s');
-	if($_REQUEST['assigned_user_id'] != '')
+	if($this->column_fields['assigned_user_id'] != '')
 		$ownertype = 'user';
 	else
 		$ownertype = 'customer';





More information about the vtigercrm-commits mailing list