mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
dbfd2c44e9
Mostly CS, doc blocks and some CSS
13 lines
241 B
PHP
13 lines
241 B
PHP
<?php
|
|
if (!isset($channel)):
|
|
$channel = array();
|
|
endif;
|
|
if (!isset($channel['title'])):
|
|
$channel['title'] = $this->fetch('title');
|
|
endif;
|
|
|
|
echo $this->Rss->document(
|
|
$this->Rss->channel(
|
|
array(), $channel, $this->fetch('content')
|
|
)
|
|
);
|