[Vtigercrm-commits] [vtiger-commits] r4143 - in /vtigercrm/trunk: include/utils/UserInfoUtil.php modules/Users/ListProfiles.php modules/Users/SaveProfile.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Mar 13 08:11:08 EST 2006
Author: saraj
Date: Mon Mar 13 06:10:58 2006
New Revision: 4143
Log:
profile listview has been integrated
Modified:
vtigercrm/trunk/include/utils/UserInfoUtil.php (contents, props changed)
vtigercrm/trunk/modules/Users/ListProfiles.php (contents, props changed)
vtigercrm/trunk/modules/Users/SaveProfile.php
Modified: vtigercrm/trunk/include/utils/UserInfoUtil.php
==============================================================================
--- vtigercrm/trunk/include/utils/UserInfoUtil.php (original)
+++ vtigercrm/trunk/include/utils/UserInfoUtil.php Mon Mar 13 06:10:58 2006
@@ -1890,11 +1890,11 @@
* @param $profilename -- Profile Name:: Type varchar
* @param $parentProfileId -- Profile Id:: Type integer
*/
-function createProfile($profilename,$parentProfileId)
+function createProfile($profilename,$parentProfileId,$description)
{
global $adb;
//Inserting values into Profile Table
- $sql1 = "insert into profile values('','".$profilename."')";
+ $sql1 = "insert into profile values('','".$profilename."','".$description."')";
$adb->query($sql1);
//Retreiving the profileid
Modified: vtigercrm/trunk/modules/Users/ListProfiles.php
==============================================================================
Binary files - no diff available.
Modified: vtigercrm/trunk/modules/Users/SaveProfile.php
==============================================================================
Binary files - no diff available.
More information about the vtigercrm-commits
mailing list