cakephp2-php8/lib/Cake/tests/test_app/views/layouts/rss/default.ctp
José Lorenzo Rodríguez 4a287faa1e Moving the tests folder
2010-12-08 01:36:38 -04:30

17 lines
No EOL
238 B
PHP

<?php
echo $rss->header();
if (!isset($channel)) {
$channel = array();
}
if (!isset($channel['title'])) {
$channel['title'] = $title_for_layout;
}
echo $rss->document(
$rss->channel(
array(), $channel, $content_for_layout
)
);
?>