[Vtigercrm-commits] [vtiger-commits] r7153 - /vtigercrm/trunk/modules/Users/User.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Fri Jun 16 01:58:21 EDT 2006


Author: don
Date: Thu Jun 15 23:58:17 2006
New Revision: 7153

Log:
Issue in user save has been fixed

Modified:
    vtigercrm/trunk/modules/Users/User.php

Modified: vtigercrm/trunk/modules/Users/User.php
==============================================================================
--- vtigercrm/trunk/modules/Users/User.php (original)
+++ vtigercrm/trunk/modules/Users/User.php Thu Jun 15 23:58:17 2006
@@ -90,7 +90,6 @@
 	var $table_name = "vtiger_users";
 
 	// This is the list of fields that are in the lists.
-	var $list_fields_name = Array();
 	var $list_link_field= '';
 
 	var $list_mode;
@@ -108,7 +107,6 @@
 	var $tagcloud;
 	var $imagename;
 	var $defhomeview;
-	//var $sortby_fields = Array('user_name','email1','last_name','is_admin','status');	
 
 	var $encodeFields = Array("first_name", "last_name", "description");
 
@@ -117,8 +115,6 @@
 
 	var $sortby_fields = Array('status','email1','phone_work','is_admin','user_name');	  
 
-	var $default_order_by = 'lastname';
-	var $default_sort_order = 'ASC';
 	// This is the list of vtiger_fields that are in the lists.
 	var $list_fields = Array(
 		'First Name'=>Array('vtiger_users'=>'first_name'),
@@ -796,6 +792,13 @@
 
 		return;
 	}
+	function save($module_name) 
+	{
+		global $log;
+	        $log->debug("module name is ".$module_name);
+		//GS Save entity being called with the modulename as parameter
+		$this->saveentity($module_name);
+	}
 
 }
 ?>





More information about the vtigercrm-commits mailing list