mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Fixed method tagPaste
We need to remove quotes from names of blocks to get them from array.
This commit is contained in:
parent
8730343442
commit
6a7291fac6
@ -1087,7 +1087,7 @@ class Compiler
|
|||||||
|
|
||||||
public static function tagPaste(Tokenizer $tokens, Tag $tag)
|
public static function tagPaste(Tokenizer $tokens, Tag $tag)
|
||||||
{
|
{
|
||||||
$name = $tokens->get(T_CONSTANT_ENCAPSED_STRING);
|
$name = str_replace(array('\'', '"'), '', $tokens->get(T_CONSTANT_ENCAPSED_STRING));
|
||||||
$tokens->next();
|
$tokens->next();
|
||||||
if(isset($tag->tpl->blocks[$name])) {
|
if(isset($tag->tpl->blocks[$name])) {
|
||||||
return "?>".substr($tag->tpl->blocks[$name]["block"], 1, -1)."<?php ";
|
return "?>".substr($tag->tpl->blocks[$name]["block"], 1, -1)."<?php ";
|
||||||
|
Loading…
Reference in New Issue
Block a user