mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 20:08:24 +00:00
1ede742d92
Mostly CS, doc blocks and unused variables.
15 lines
No EOL
260 B
PHP
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')
|
|
)
|
|
); |