- bugfix chained modifier failed when last modifier parameter is a signed value

https://github.com/smarty-php/smarty/issues/327
This commit is contained in:
Uwe Tews
2017-08-26 11:47:41 +02:00
parent 511773ce6b
commit f90b449d21
4 changed files with 1258 additions and 1123 deletions

View File

@@ -1,4 +1,8 @@
===== 3.1.32 - dev === ===== 3.1.32 - dev ===
26.8.2017
- bugfix chained modifier failed when last modifier parameter is a signed value
https://github.com/smarty-php/smarty/issues/327
09.8.2017 09.8.2017
- improvement repeated delimiter like {{ and }} will be treated as literal - improvement repeated delimiter like {{ and }} will be treated as literal
https://groups.google.com/forum/#!topic/smarty-developers/h9r82Bx4KZw https://groups.google.com/forum/#!topic/smarty-developers/h9r82Bx4KZw

View File

@@ -211,6 +211,7 @@ class Smarty_Internal_Templateparser
%left VERT. %left VERT.
%left COLON. %left COLON.
%left UNIMATH.
// //
// complete template // complete template

View File

@@ -108,7 +108,7 @@ class Smarty extends Smarty_Internal_TemplateBase
/** /**
* smarty version * smarty version
*/ */
const SMARTY_VERSION = '3.1.32-dev-19'; const SMARTY_VERSION = '3.1.32-dev-20';
/** /**
* define variable scopes * define variable scopes

File diff suppressed because it is too large Load Diff