Skip to content

Commit

Permalink
Re(added) closing tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Sep 18, 2014
1 parent a441a71 commit 5838c85
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/View/Emails/html/default.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ $content = explode("\n", $content);
foreach ($content as $line):
echo '<p> ' . $line . "</p>\n";
endforeach;
?>
2 changes: 1 addition & 1 deletion app/View/Emails/text/default.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
?>
<?php echo $content;
<?php echo $content; ?>
1 change: 1 addition & 0 deletions app/View/Errors/error400.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@
if (Configure::read('debug') > 0):
echo $this->element('exception_stack_trace');
endif;
?>
1 change: 1 addition & 0 deletions app/View/Errors/error500.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@
if (Configure::read('debug') > 0):
echo $this->element('exception_stack_trace');
endif;
?>
2 changes: 1 addition & 1 deletion app/View/Layouts/ajax.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
?>
<?php echo $this->fetch('content');
<?php echo $this->fetch('content'); ?>
1 change: 1 addition & 0 deletions app/View/Layouts/rss/default.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ echo $this->Rss->document(
array(), $channel, $this->fetch('content')
)
);
?>
2 changes: 1 addition & 1 deletion app/View/Layouts/xml/default.ctp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php echo $this->fetch('content');
<?php echo $this->fetch('content'); ?>

0 comments on commit 5838c85

Please sign in to comment.