zoneminder/web/api/app/View/Layouts/rss/default.ctp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
241 B
Plaintext
Raw Normal View History

<?php
if (!isset($channel)):
$channel = array();
endif;
if (!isset($channel['title'])):
2021-02-03 00:35:03 +08:00
$channel['title'] = $this->fetch('title');
endif;
echo $this->Rss->document(
$this->Rss->channel(
array(), $channel, $this->fetch('content')
)
);