Changeset 20155

Show
Ignore:
Timestamp:
09/28/08 19:31:34 (5 years ago)
Author:
nowelium
Message:
 
Location:
lang/php/misc/Hermit/src/Hermit/proxy
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Hermit/proxy/HermitDelegateProxy.php

    r20152 r20155  
    1212    } 
    1313    public function request($name, array $parameters){ 
    14         return call_user_func_array(array($this->target, $this->methodName), array($parameters)); 
     14        return call_user_func_array(array($this->target, $this->methodName), $parameters); 
    1515    } 
    1616} 
  • lang/php/misc/Hermit/src/Hermit/proxy/HermitRespondProxy.php

    r20152 r20155  
    1212    } 
    1313    public function request($name, array $response){ 
    14         return call_user_func_array(array($this->target, $this->methodName), array($response)); 
     14        return call_user_func_array(array($this->target, $this->methodName), $response); 
    1515    } 
    1616}