<?php
header('Content-Type: text/xml');
require_once '../config2_ddl/config.php';
require_once $cmsConfig['config2_dir'] . 'localconfig.inc.php';

require_once($cmsConfig['wp_classes_dir'] . "class.Wp_Rss.php");	
	
//parameters
//----------------------------------------------
	$days = 90;
	$site = $cmsConfig['base_url'];
	$description_truncation_length = 200;
//----------------------------------------------
	
$feed = new Wp_Rss($site, $description_truncation_length , $days );

$Category = $_REQUEST['Category'];
	echo $feed->Wp_Rss_Display_Rss($Category);
?>
