mirror of
https://github.com/Mibew/handlebars.php.git
synced 2024-11-15 00:34:12 +03:00
Merge pull request #2 from RoundingWellOS/master
Fix PHP 7.3 compatibility
This commit is contained in:
commit
c416140cd7
@ -164,7 +164,7 @@ class Tokenizer
|
||||
} elseif ($this->tagChange(self::T_UNESCAPED.$this->otag, $text, $i) and $this->escaped) {
|
||||
$this->buffer .= "{{{";
|
||||
$i += 2;
|
||||
continue;
|
||||
break;
|
||||
} elseif ($this->tagChange($this->otag, $text, $i) and (!$this->escaped || $prev_slash)) {
|
||||
$i--;
|
||||
$this->flushBuffer();
|
||||
@ -210,7 +210,7 @@ class Tokenizer
|
||||
default:
|
||||
if ($this->tagChange(self::T_TRIM . $this->ctag, $text, $i)) {
|
||||
$this->trimRight = true;
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
if ($this->tagChange($this->ctag, $text, $i)) {
|
||||
// Sections (Helpers) can accept parameters
|
||||
|
Loading…
Reference in New Issue
Block a user