mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Fix bug: unexpected array conversion when object given to {foreach} with force verify option
This commit is contained in:
parent
d5417630ac
commit
a9b9c89f88
@ -142,7 +142,7 @@ class Compiler
|
|||||||
$check = '!empty('.$from.')';
|
$check = '!empty('.$from.')';
|
||||||
} else {
|
} else {
|
||||||
$scope["var"] = $scope->tpl->tmpVar();
|
$scope["var"] = $scope->tpl->tmpVar();
|
||||||
$prepend = $scope["var"].' = (array)('.$from.');';
|
$prepend = $scope["var"].' = '.$from.';';
|
||||||
$from = $check = $scope["var"];
|
$from = $check = $scope["var"];
|
||||||
}
|
}
|
||||||
} elseif ($tokens->is('[')) {
|
} elseif ($tokens->is('[')) {
|
||||||
|
Loading…
Reference in New Issue
Block a user