mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-23 13:38:57 -05:00
15 lines
240 B
PHP
15 lines
240 B
PHP
<?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')
|
|
)
|
|
);
|
|
?>
|