tbrehm
2011-11-21 edf806b98d675a2037b019644aff76b7e8b7738c
interface/lib/classes/remoting.inc.php
@@ -1372,6 +1372,13 @@
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      //* Set a few defaults for nginx servers
      if($params['pm_max_children'] == '') $params['pm_max_children'] = 1;
      if($params['pm_start_servers'] == '') $params['pm_start_servers'] = 1;
      if($params['pm_min_spare_servers'] == '') $params['pm_min_spare_servers'] = 1;
      if($params['pm_max_spare_servers'] == '') $params['pm_max_spare_servers'] = 1;
      $affected_rows = $this->updateQuery('../sites/form/web_domain.tform.php',$client_id,$primary_id,$params);
      return $affected_rows;
   }
@@ -2325,6 +2332,7 @@
   
   protected function checkPerm($session_id, $function_name)
    {
        global $app;
   $dobre=array();
   $session = $this->getSession($session_id);
        if(!$session){
@@ -2332,7 +2340,11 @@
        }
      
      $dobre= str_replace(';',',',$session['remote_functions']);
      return in_array($function_name, explode(',', $dobre) );
      $check = in_array($function_name, explode(',', $dobre) );
      if(!$check) {
        $app->log("REMOTE-LIB DENY: ".$session_id ." /". $function_name, LOGLEVEL_WARN);
      }
      return $check;
   }
   
   
@@ -2445,6 +2457,26 @@
         return false;
        }
    }
      /**
       * Get All client_id's from database
       * @param int   session_id
       * @return Array of all client_id's
       */
   public function client_get_all($session_id) {
     global $app;
     if(!$this->checkPerm($session_id, 'client_get_all')) {
       $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
       return false;
     }
     $result = $app->db->queryAllRecords("SELECT client_id FROM client WHERE 1");
     if(!$result) {
       return false;
     }
     foreach( $result as $record) {
       $rarrary[] = $record['client_id'];
     }
     return $rarrary;
   }
    /**
     * Changes client password
@@ -2954,4 +2986,4 @@
   
   
}
?>
?>