Skip to content
Snippets Groups Projects
Commit f3162262 authored by Alvaro Graves's avatar Alvaro Graves
Browse files

Bug in service, mixed localUri w/ Uri

parent a5609415
No related branches found
No related tags found
No related merge requests found
...@@ -44,9 +44,9 @@ public function execute($service){ ...@@ -44,9 +44,9 @@ public function execute($service){
$context['endpoints'] = $endpoints; $context['endpoints'] = $endpoints;
//$sp = new SpecialFunction(); //$sp = new SpecialFunction();
//$sp->execute($localUri, $context); //$sp->execute($localUri, $context);
$f = $this->getFunction($uri); $f = $this->getFunction($localUri);
$params = array(); $params = array();
$params = $this->getParams($uri); $params = $this->getParams($localUri);
//$params[] = $context; //$params[] = $context;
$acceptContentType = Utils::getBestContentType($_SERVER['HTTP_ACCEPT']); $acceptContentType = Utils::getBestContentType($_SERVER['HTTP_ACCEPT']);
$extension = Utils::getExtension($acceptContentType); $extension = Utils::getExtension($acceptContentType);
......
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