mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Re(added) closing tag
This commit is contained in:
parent
a441a71f77
commit
5838c85f96
7 changed files with 7 additions and 3 deletions
|
@ -20,3 +20,4 @@ $content = explode("\n", $content);
|
|||
foreach ($content as $line):
|
||||
echo '<p> ' . $line . "</p>\n";
|
||||
endforeach;
|
||||
?>
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
?>
|
||||
<?php echo $content;
|
||||
<?php echo $content; ?>
|
||||
|
|
|
@ -26,3 +26,4 @@
|
|||
if (Configure::read('debug') > 0):
|
||||
echo $this->element('exception_stack_trace');
|
||||
endif;
|
||||
?>
|
||||
|
|
|
@ -23,3 +23,4 @@
|
|||
if (Configure::read('debug') > 0):
|
||||
echo $this->element('exception_stack_trace');
|
||||
endif;
|
||||
?>
|
||||
|
|
|
@ -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'); ?>
|
||||
|
|
|
@ -11,3 +11,4 @@ echo $this->Rss->document(
|
|||
array(), $channel, $this->fetch('content')
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<?php echo $this->fetch('content');
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
|
Loading…
Reference in a new issue