|
|
@@ -157,7 +157,11 @@ class tools {
|
|
|
if ($save_model == "profile"){
|
|
|
$first_name = common::check_input($_POST['first_name']);
|
|
|
$last_name = common::check_input($_POST['last_name']);
|
|
|
- $sql = "update public.ra_online_user set first_name = '$first_name',last_name = '$last_name' where lower(user_login) = '".strtolower(_getLoginName())."'";
|
|
|
+ $is_desensitization_kln = common::check_input($_POST['is_desensitization_kln']);
|
|
|
+ $sql = "update public.ra_online_user set first_name = '$first_name',last_name = '$last_name' ,is_desensitization_kln = '$is_desensitization_kln' where lower(user_login) = '".strtolower(_getLoginName())."'";
|
|
|
+
|
|
|
+ session_start();
|
|
|
+ $_SESSION['ONLINE_USER']['is_desensitization_kln'] = $is_desensitization_kln;
|
|
|
}else{
|
|
|
$date_format = common::check_input($_REQUEST['date_format']);
|
|
|
$numbers_format = common::check_input($_REQUEST['numbers_format']);
|