khanat-opennel-code/code/web/public_php/webtt/cake/libs/view/layouts/rss/default.ctp
2014-08-19 01:57:20 +02:00

16 lines
No EOL
255 B
PHP

<?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, $content_for_layout
)
);
?>