Skip to content

Commit

Permalink
Copying missing directories to skel/views/layouts
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5029 3807eeeb-6ff5-0310-8944-8be069107fe0
  • Loading branch information
phpnut committed May 6, 2007
1 parent 32cc125 commit aecb9e6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cake/console/libs/templates/skel/views/layouts/js/default.ctp
@@ -0,0 +1,2 @@
<?php echo $scripts_for_layout; ?>
<script type="text/javascript"><?php echo $content_for_layout; ?></script>
17 changes: 17 additions & 0 deletions cake/console/libs/templates/skel/views/layouts/rss/default.ctp
@@ -0,0 +1,17 @@
<?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
)
);

?>
@@ -0,0 +1,2 @@
<?php e($xml->header()); ?>
<?php echo $content_for_layout; ?>

0 comments on commit aecb9e6

Please sign in to comment.