Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12345 anikendra 1
<?php
2
echo $this->Rss->header();
3
 
4
if (!isset($channel)) {
5
	$channel = array();
6
}
7
if (!isset($channel['title'])) {
8
	$channel['title'] = $this->fetch('title');
9
}
10
 
11
echo $this->Rss->document(
12
	$this->Rss->channel(
13
		array(), $channel, $this->fetch('content')
14
	)
15
);
16
 
17
?>