Skip to content
Snippets Groups Projects
Commit 63d1be29 authored by tbrehm's avatar tbrehm
Browse files

Undone the change from the previous commit.

parent 1c5959a5
No related branches found
No related tags found
No related merge requests found
...@@ -135,15 +135,18 @@ class page_action extends tform_actions { ...@@ -135,15 +135,18 @@ class page_action extends tform_actions {
if($this->oldDataRecord['username'] != $this->dataRecord['username']) { if($this->oldDataRecord['username'] != $this->dataRecord['username']) {
$username = mysql_real_escape_string($this->dataRecord["username"]); $username = mysql_real_escape_string($this->dataRecord["username"]);
$client_id = $this->id; $client_id = $this->id;
$app->db->datalogUpdate('sys_user', "username = '$username'", 'client_id', $client_id); $sql = "UPDATE sys_user SET username = '$username' WHERE client_id = $client_id";
$app->db->datalogUpdate('sys_group', "name = '$username'", 'client_id', $client_id); $app->db->query($sql);
$sql = "UPDATE sys_group SET name = '$username' WHERE client_id = $client_id";
$app->db->query($sql);
} }
// password changed // password changed
if(isset($this->dataRecord["password"]) && $this->dataRecord["password"] != '') { if(isset($this->dataRecord["password"]) && $this->dataRecord["password"] != '') {
$password = mysql_real_escape_string($this->dataRecord["password"]); $password = mysql_real_escape_string($this->dataRecord["password"]);
$client_id = $this->id; $client_id = $this->id;
$app->db->datalogUpdate('sys_user', "passwort = md5('$password')", 'client_id', $client_id); $sql = "UPDATE sys_user SET passwort = md5('$password') WHERE client_id = $client_id";
$app->db->query($sql);
} }
// reseller status changed // reseller status changed
...@@ -152,7 +155,8 @@ class page_action extends tform_actions { ...@@ -152,7 +155,8 @@ class page_action extends tform_actions {
if($this->dataRecord["limit_client"] > 0) $modules .= ',client'; if($this->dataRecord["limit_client"] > 0) $modules .= ',client';
$modules = mysql_real_escape_string($modules); $modules = mysql_real_escape_string($modules);
$client_id = $this->id; $client_id = $this->id;
$app->db->datalogUpdate('sys_user', "modules = '$modules'", 'client_id', $client_id); $sql = "UPDATE sys_user SET modules = '$modules' WHERE client_id = $client_id";
$app->db->query($sql);
} }
/* /*
* If there is a client-template, process it */ * If there is a client-template, process it */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment