- fixed typo in template parser

This commit is contained in:
uwe.tews@googlemail.com
2012-01-20 14:52:50 +00:00
parent c352723ec9
commit 1e2fb8fbbe
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,8 @@
===== trunk =====
13.01.2012
20.01.2012
- bugfix typo in Smarty_Internal_Get_IncludePath did cause runtime overhead (Issue 74)
- improvment remove unneeded assigments (Issue 75 and 76)
- fixed typo in template parser
02.01.2012
- bugfix {block foo nocache} did not load plugins within child {block} in nocache mode (Forum Topic 20753)

View File

@@ -2299,7 +2299,7 @@ static public $yy_action = array(
if ($this->strip) {
$this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)));
} else {
$this->_retvalue = new _smarty_text($this, self::escape_start_tag(<EFBFBD>));
$this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
}
}
#line 2301 "smarty_internal_templateparser.php"