Tomasz Chiliński

Results 170 comments of Tomasz Chiliński

@uwetews but this doesn't resolve the problem, because in plugins we use template inheritance also for header.html and footer.html, as we want to modify their contents.

But this would require a lot of changes - a few hundred files :(

3.1.33: ```php $SMARTY->setMergeCompiledIncludes(true); $SMARTY->setDefaultResourceType('extendsall'); ``` Only included templates are loaded with 'extendsall:' prefix, I mean: ```smarty {include file="contents.html"} ``` impacts on compiled template as follows: ```php 'includes' => array (...

The clue is that it doesn't find layout.html in other template dir.

I try to change template such way that I put template file with the same name as original but in other template directory (added to template dir collection), but Smarty...

In my problematic scenario we have 2 template files with the same name but located in different template directories - layout.html. Let's assume that 1:layout.html, 2:layout.html mean template files from...

I asked colleague to describe the problem with more details. Will update this issues when get answer from him.

@uwetews in mean time I'd like to appreciate your work more. Would you create paypal link for your regular personal donation? I donate [email protected] monthly with 20$ and the same...

Ok - I've prepared problem isolated test: **index.php** file: ```php $SMARTY = new Smarty; $SMARTY->setMergeCompiledIncludes(true); $SMARTY->setDefaultResourceType('extendsall'); $SMARTY->AddTemplateDir(array( 'directory_1', 'directory_2', )); $SMARTY->display('test.html'); ``` **test.html** from _directory\_1_: ```html test_1 ``` **test.html** from...