diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2025-08-26 10:37:46 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2025-08-26 10:37:46 +0200 |
| commit | a8d77c86660ca0562ec2fb781fbbda737fb7a62b (patch) | |
| tree | 9eb5430e7aa1da70c916d9a25db3d6e2b9a68e48 | |
| parent | 3e6a478e934d538a22e6f19d738ac84f07dda7a0 (diff) | |
| parent | 7721e5d7869f4817fb47dd9dfc4421c6ae1dc5bd (diff) | |
| download | smarty-4.5.6.tar.gz smarty-4.5.6.tar.bz2 smarty-4.5.6.zip | |
Merge branch 'release/4.5.6' into support/4v4.5.6
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | changelog/1073.md | 1 | ||||
| -rw-r--r-- | changelog/1100.md | 1 | ||||
| -rw-r--r-- | libs/Smarty.class.php | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4395a309..3af862d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.5.6] - 2025-08-26 +- Fixed that modifiers called like function would be compiled to modifier name instead of calling the registered callback [#1100](https://github.com/smarty-php/smarty/issues/1100) +- Replace SMARTY_VERSION constant with $smarty.version in debug.tpl [#1073](https://github.com/smarty-php/smarty/issues/1073) + + - Fixed escaping of array/object keys in debug_print_var ## [4.5.5] - 2024-11-21 diff --git a/changelog/1073.md b/changelog/1073.md deleted file mode 100644 index 0b30594d..00000000 --- a/changelog/1073.md +++ /dev/null @@ -1 +0,0 @@ -- Replace SMARTY_VERSION constant with $smarty.version in debug.tpl [#1073](https://github.com/smarty-php/smarty/issues/1073) diff --git a/changelog/1100.md b/changelog/1100.md deleted file mode 100644 index d1b69006..00000000 --- a/changelog/1100.md +++ /dev/null @@ -1 +0,0 @@ -- Fixed that modifiers called like function would be compiled to modifier name instead of calling the registered callback [#1100](https://github.com/smarty-php/smarty/issues/1100) diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 071cc94f..a9309a37 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -107,7 +107,7 @@ class Smarty extends Smarty_Internal_TemplateBase /** * smarty version */ - const SMARTY_VERSION = '4.5.5'; + const SMARTY_VERSION = '4.5.6'; /** * define variable scopes */ |
