Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<?php
2
if (!isset($channel)):
3
	$channel = array();
4
endif;
5
if (!isset($channel['title'])):
6
	$channel['title'] = $this->fetch('title');
7
endif;
8
 
9
echo $this->Rss->document(
10
	$this->Rss->channel(
11
		array(), $channel, $this->fetch('content')
12
	)
13
);