mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 10:54:27 +02:00
* Fixed made Smarty_Compiler.class.php compatible with PHP 5.5
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2013-07-16 Uwe Tews
|
||||||
|
|
||||||
|
* Fixed made Smarty_Compiler.class.php compatible with PHP 5.5
|
||||||
|
|
||||||
|
|
||||||
2012-09-24 Uwe Tews
|
2012-09-24 Uwe Tews
|
||||||
|
|
||||||
* Fixed escape Smarty error messages to avoid possible script execution
|
* Fixed escape Smarty error messages to avoid possible script execution
|
||||||
|
@@ -262,11 +262,11 @@ class Smarty_Compiler extends Smarty {
|
|||||||
reset($this->_folded_blocks);
|
reset($this->_folded_blocks);
|
||||||
|
|
||||||
/* replace special blocks by "{php}" */
|
/* replace special blocks by "{php}" */
|
||||||
$source_content = preg_replace($search.'e', "'"
|
$source_content = preg_replace_callback($search, create_function ('$matches', "return '"
|
||||||
. $this->_quote_replace($this->left_delimiter) . 'php'
|
. $this->_quote_replace($this->left_delimiter) . 'php'
|
||||||
. "' . str_repeat(\"\n\", substr_count('\\0', \"\n\")) .'"
|
. "' . str_repeat(\"\n\", substr_count('\$matches[1]', \"\n\")) .'"
|
||||||
. $this->_quote_replace($this->right_delimiter)
|
. $this->_quote_replace($this->right_delimiter)
|
||||||
. "'"
|
. "';")
|
||||||
, $source_content);
|
, $source_content);
|
||||||
|
|
||||||
/* Gather all template tags. */
|
/* Gather all template tags. */
|
||||||
|
Reference in New Issue
Block a user