summaryrefslogtreecommitdiff
path: root/framework/Web/Services
diff options
context:
space:
mode:
authorChristophe.Boulain <>2009-05-29 06:31:35 +0000
committerChristophe.Boulain <>2009-05-29 06:31:35 +0000
commit3f8d4deb7224b4ea9a92e439d665ec9eff3859e5 (patch)
tree897d538864445d0806b1237e1a2611a2185cb092 /framework/Web/Services
parent7d15c048340cbcbd06cb9664b479d45906d2b0d8 (diff)
Fixed Issue#167
Diffstat (limited to 'framework/Web/Services')
-rw-r--r--framework/Web/Services/TJsonService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/Services/TJsonService.php b/framework/Web/Services/TJsonService.php
index 52997358..d3a6bbf0 100644
--- a/framework/Web/Services/TJsonService.php
+++ b/framework/Web/Services/TJsonService.php
@@ -87,7 +87,7 @@ class TJsonService extends TService
foreach($config->getElementsByTagName('json') as $json)
{
if(($id=$json->getAttribute('id'))!==null)
- $this->_services[$id]=$config;
+ $this->_services[$id]=$json;
else
throw new TConfigurationException('jsonservice_id_required');
}