mcramer
2012-08-31 45629b1b215d68be128f589f49a0e772c9471d06
Fixed: remoting handling of clients/resellers added/updated

1 files modified
6 ■■■■■ changed files
interface/lib/classes/remoting.inc.php 6 ●●●●● patch | view | raw | blame | history
interface/lib/classes/remoting.inc.php
@@ -1063,7 +1063,8 @@
                    $this->server->fault('permission_denied','You do not have the permissions to access this function.');
                    return false;
            }
        $affected_rows = $this->klientadd('../client/form/' . ($reseller_id ? 'reseller' : 'client') . '.tform.php',$reseller_id, $params);
        if(!isset($params['parent_client_id']) || $params['parent_client_id'] == 0) $params['parent_client_id'] = $reseller_id;
        $affected_rows = $this->klientadd('../client/form/' . (isset($params['limit_client']) && $params['limit_client'] > 0 ? 'reseller' : 'client') . '.tform.php',$reseller_id, $params);
        return $affected_rows;  
                  
    }
@@ -1077,7 +1078,8 @@
                    $this->server->fault('permission_denied','You do not have the permissions to access this function.');
                    return false;
            }
            $affected_rows = $this->updateQuery('../client/form/' . ($reseller_id ? 'reseller' : 'client') . '.tform.php', $reseller_id, $client_id, $params);
            if(!isset($params['parent_client_id']) || $params['parent_client_id'] == 0) $params['parent_client_id'] = $reseller_id;
            $affected_rows = $this->updateQuery('../client/form/' . (isset($params['limit_client']) && $params['limit_client'] > 0 ? 'reseller' : 'client') . '.tform.php', $reseller_id, $client_id, $params);
            
            $app->remoting_lib->ispconfig_sysuser_update($params,$client_id);