diff options
author | Cash Costello <cash.costello@gmail.com> | 2013-03-10 12:19:05 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2013-03-10 12:19:05 -0400 |
commit | 6494ba26f0f77bbb9bdfb8e4c0d2fd0af862225a (patch) | |
tree | 1b8928ffb85efa5d85b48f8c0fa5d2e55639f376 /engine/lib/web_services.php | |
parent | f3ff77d0260b9bf9c9d60f3cb4e545e2761412b9 (diff) | |
download | elgg-6494ba26f0f77bbb9bdfb8e4c0d2fd0af862225a.tar.gz elgg-6494ba26f0f77bbb9bdfb8e4c0d2fd0af862225a.tar.bz2 |
fallback to json in web services
Diffstat (limited to 'engine/lib/web_services.php')
-rw-r--r-- | engine/lib/web_services.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/web_services.php b/engine/lib/web_services.php index b6289184a..b440e3afb 100644 --- a/engine/lib/web_services.php +++ b/engine/lib/web_services.php @@ -1267,14 +1267,14 @@ function service_handler($handler, $request) { $request = explode('/', $request); // after the handler, the first identifier is response format - // ex) http://example.org/services/api/rest/xml/?method=test + // ex) http://example.org/services/api/rest/json/?method=test $response_format = array_shift($request); // Which view - xml, json, ... if ($response_format && elgg_is_valid_view_type($response_format)) { elgg_set_viewtype($response_format); } else { - // default to xml - elgg_set_viewtype("xml"); + // default to json + elgg_set_viewtype("json"); } if (!isset($CONFIG->servicehandler) || empty($handler)) { |