tbrehm
2008-12-21 63d1be29565a755e15625ddd53532ca427e5e0cc
Undone the change from the previous commit.
1 files modified
12 ■■■■■ changed files
interface/web/client/client_edit.php 12 ●●●●● patch | view | raw | blame | history
interface/web/client/client_edit.php
@@ -135,15 +135,18 @@
        if($this->oldDataRecord['username'] != $this->dataRecord['username']) {
            $username = mysql_real_escape_string($this->dataRecord["username"]);
            $client_id = $this->id;
            $app->db->datalogUpdate('sys_user', "username = '$username'", 'client_id', $client_id);
            $app->db->datalogUpdate('sys_group', "name = '$username'", 'client_id', $client_id);
            $sql = "UPDATE sys_user SET username = '$username' WHERE 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
        if(isset($this->dataRecord["password"]) && $this->dataRecord["password"] != '') {
            $password = mysql_real_escape_string($this->dataRecord["password"]);
            $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
@@ -152,7 +155,8 @@
            if($this->dataRecord["limit_client"] > 0) $modules .= ',client';
            $modules = mysql_real_escape_string($modules);
            $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 */