Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<?php
echo $this->Rss->header();

if (!isset($channel)) {
        $channel = array();
}
if (!isset($channel['title'])) {
        $channel['title'] = $title_for_layout;
}

echo $this->Rss->document(
        $this->Rss->channel(
                array(), $channel, $this->fetch('content')
        )
);

?>