blob: e633a7bca6f7a6d7f99f02eabe70907eae5741fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Elgg XML output pageshell
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*
*/
header("Content-Type: text/xml");
header("Content-Length: " . strlen($vars['body']));
echo $vars['body'];
?>
|