-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
Hi Giuseppe,
I've created a simple demo for, apparently, a bug I have found.
I have a base template called: baseTemplate
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<? $this->section('body') ?>aaa<? $this->stop() ?>
</body>
</html>
I have a second template called: templateA
<? $this->layout('_layout/baseTemplate') ?>
<? $this->section('body') ?>bbb<? $this->replace() ?>
I have a third template called: templateB
<? $this->layout('_layout/templateA') ?>
<? $this->section('body') ?>ccc<? $this->replace() ?>
While the result is supposed to be: ccc, in fact, it shows bbb
If I change the the section ending in templateA from replace() to stop(), I get ccc.
I would we very thankful if you could take a look at it, and fix it. :)
Yoshi.
Metadata
Metadata
Assignees
Labels
No labels