summaryrefslogtreecommitdiffstats
path: root/common/atom.php
diff options
context:
space:
mode:
Diffstat (limited to 'common/atom.php')
-rw-r--r--common/atom.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/atom.php b/common/atom.php
index 5122158..c80d987 100644
--- a/common/atom.php
+++ b/common/atom.php
@@ -1,15 +1,15 @@
<?php
-include_once(dirname(__FILE__).'/app/app.php');
-include_once(dirname(__FILE__).'/app/lib/Cache.php');
+include_once(__DIR__.'/app/app.php');
+include_once(__DIR__.'/app/lib/Cache.php');
-if ($Planet->loadOpml(dirname(__FILE__).'/custom/people.opml') == 0) exit;
+if ($Planet->loadOpml(__DIR__.'/custom/people.opml') == 0) exit;
$Planet->loadFeeds();
$items = $Planet->getItems();
$limit = $PlanetConfig->getMaxDisplay();
$count = 0;
-header('Content-Type: application/atom+xml; charset=UTF-8');
+header('Content-Type: text/xml; charset=UTF-8');
echo '<?xml version="1.0" encoding="UTF-8" ?>';
?>
<feed xmlns="http://www.w3.org/2005/Atom">