cakephp2-php8/lib/Cake/Test/test_app/View/Layouts/rss/default.ctp
Marc Würth 1ede742d92 Various improvements to the CakePHP test files
Mostly CS, doc blocks and unused variables.
2015-09-25 17:22:00 +02:00

15 lines
No EOL
260 B
PHP

<?php
echo $this->Rss->header();
if (!isset($channel)) {
$channel = array();
}
if (!isset($channel['title'])) {
$channel['title'] = $this->fetch('title');
}
echo $this->Rss->document(
$this->Rss->channel(
array(), $channel, $this->fetch('content')
)
);