aboutsummaryrefslogtreecommitdiff
path: root/views/xml/pageshells/pageshell.php
blob: 6e89e389a7585bd25a9dcc346c4b3eb84c0d08d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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'];