14 lines
237 B
Plaintext
14 lines
237 B
Plaintext
|
<?php
|
||
|
if (!isset($channel)):
|
||
|
$channel = array();
|
||
|
endif;
|
||
|
if (!isset($channel['title'])):
|
||
|
$channel['title'] = $title_for_layout;
|
||
|
endif;
|
||
|
|
||
|
echo $this->Rss->document(
|
||
|
$this->Rss->channel(
|
||
|
array(), $channel, $this->fetch('content')
|
||
|
)
|
||
|
);
|