mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Fix #122. Compatibility problem with mb_string
This commit is contained in:
parent
ab52186dfa
commit
f532658cc4
@ -193,7 +193,7 @@ class Template extends Render
|
||||
$this->_src = call_user_func($filter, $this, $this->_src);
|
||||
}
|
||||
while (($start = strpos($this->_src, '{', $pos)) !== false) { // search open-symbol of tags
|
||||
switch ($this->_src[$start + 1]) { // check next character
|
||||
switch (substr($this->_src, $start + 1, 1)) { // check next character
|
||||
case "\n":
|
||||
case "\r":
|
||||
case "\t":
|
||||
|
Loading…
Reference in New Issue
Block a user