aboutsummaryrefslogtreecommitdiff
path: root/engine/handlers
diff options
context:
space:
mode:
Diffstat (limited to 'engine/handlers')
-rw-r--r--engine/handlers/xml-rpc_handler.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/handlers/xml-rpc_handler.php b/engine/handlers/xml-rpc_handler.php
index 85de621b3..14c1b84d1 100644
--- a/engine/handlers/xml-rpc_handler.php
+++ b/engine/handlers/xml-rpc_handler.php
@@ -23,7 +23,7 @@
// Set some defaults
$result = null;
- $view = 'xml'; // Set default view regardless
+ $_SESSION['view'] = 'xml'; // Set default view regardless
// Get the post data
$input = get_post_data();
@@ -43,6 +43,6 @@
throw new APIException(elgg_echo('APIException:ApiResultUnknown'));
// Output result
- page_draw("XML-RPC", elgg_echo("xml-rpc/output", array('result' => $result)));
+ page_draw("XML-RPC", elgg_view("xml-rpc/output", array('result' => $result)));
?> \ No newline at end of file