diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2024-12-23 01:38:44 +0100 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2024-12-23 01:38:44 +0100 |
| commit | c6bff5795081ca5e60aabda59fb87daa511acd1e (patch) | |
| tree | ef63b1a27699370c8ba8672aac9e0af204c868f6 | |
| parent | 295b7fb5825f1e4472d757523564bb686da5353d (diff) | |
| parent | 07faafe4da4b71489e0f9472242f0cc01e09250a (diff) | |
| download | smarty-c6bff5795081ca5e60aabda59fb87daa511acd1e.tar.gz smarty-c6bff5795081ca5e60aabda59fb87daa511acd1e.tar.bz2 smarty-c6bff5795081ca5e60aabda59fb87daa511acd1e.zip | |
Merge branch 'release/5.4.3'v5.4.3
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | changelog/1074.md | 1 | ||||
| -rw-r--r-- | src/Smarty.php | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f796e12e..1483be86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.4.3] - 2024-12-23 +- Fix PHP backtraces by qualifying/replacing `call_user_func_array` calls [#1074](https://github.com/smarty-php/smarty/issues/1074) + + ## [5.4.2] - 2024-11-20 diff --git a/changelog/1074.md b/changelog/1074.md deleted file mode 100644 index 845c4b5b..00000000 --- a/changelog/1074.md +++ /dev/null @@ -1 +0,0 @@ -- Fix PHP backtraces by qualifying/replacing `call_user_func_array` calls [#1074](https://github.com/smarty-php/smarty/issues/1074)
\ No newline at end of file diff --git a/src/Smarty.php b/src/Smarty.php index b8d1bc7d..15baba8f 100644 --- a/src/Smarty.php +++ b/src/Smarty.php @@ -54,7 +54,7 @@ class Smarty extends \Smarty\TemplateBase { /** * smarty version */ - const SMARTY_VERSION = '5.4.2'; + const SMARTY_VERSION = '5.4.3'; /** * define caching modes |
