Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/statistics/xml.thtml
blob: 24266335f82c4ecd2b47184fa6cad36b2f9f6cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
if (!defined('NO_MICROTIME'))
    define('NO_MICROTIME', true);
header('Content-type: text/xml');

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<data>';

if (!empty($xml)) {
    echo implode($xml, "\n");
}

echo '</data>';

?>