[Vtigercrm-commits] [vtiger-commits] r9387 - /vtigercrm/trunk/modules/Users/User.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Sat Sep 9 08:55:56 EDT 2006
Author: jerrydgeorge
Date: Sat Sep 9 06:55:48 2006
New Revision: 9387
Log:
User privilege file written for user save
Currency array modified --Jeri
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 Sat Sep 9 06:55:48 2006
@@ -634,7 +634,8 @@
$this->insertIntoEntityTable($table_name, $module);
}
}
-
+ require_once('modules/Users/CreateUserPrivilegeFile.php');
+ createUserPrivilegesfile($this->id);
$this->db->completeTransaction();
$this->db->println("TRANS saveentity ends");
}
@@ -850,7 +851,7 @@
$currency_query = "select * from vtiger_currency_info where id =1";
$currency_result = $adb->query($currency_query);
}
- $currency_array = array("$"=>"$","$"=>"$","€"=>"€","£"=>"£","¥"=>"¥","Rs"=>"₨");
+ $currency_array = array("$"=>"$","€"=>"€","£"=>"£","¥"=>"¥");
$ui_curr = $currency_array[$adb->query_result($currency_result,0,"currency_symbol")];
if($ui_curr == "")
$ui_curr = $adb->query_result($currency_result,0,"currency_symbol");
More information about the vtigercrm-commits
mailing list