mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Fix: parse error then modifier's argument converts to false
This commit is contained in:
parent
7ac11fb3cc
commit
2f769c294c
@ -1244,7 +1244,7 @@ class Template extends Render
|
||||
|
||||
$args = array();
|
||||
while ($tokens->is(":")) {
|
||||
if (!$args[] = $this->parseTerm($tokens->next())) {
|
||||
if (($args[] = $this->parseTerm($tokens->next())) === false) {
|
||||
throw new UnexpectedTokenException($tokens);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user