Update of /cvsroot/php-blog/jBlog
In directory sc8-pr-cvs1:/tmp/cvs-serv2828
Modified Files:
rss.php
Log Message:
small changes to make it work. :)
Index: rss.php
===================================================================
RCS file: /cvsroot/php-blog/jBlog/rss.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- rss.php 27 Feb 2003 16:55:35 -0000 1.1.1.1
+++ rss.php 6 Mar 2003 15:31:01 -0000 1.2
@@ -1,9 +1,12 @@
<?php
+
+header("Content-Type: text/xml");
+session_start();
+include_once("jBlog_config.inc.php");
$version = $_GET['version'];
if (empty($version)) {
$version = '0.91';
}
-
echo '<?xml version="1.0" encoding="iso-8859-1" ?>';
echo "\n";
switch ($version) {
|