From 44846d53fd2cc19bc2dd9431a67c241799f40e5a Mon Sep 17 00:00:00 2001 From: MyuTsu Date: Fri, 13 Feb 2026 16:24:46 +0100 Subject: [PATCH 1/2] fix(container): fix error during container table installation --- inc/container.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/container.class.php b/inc/container.class.php index b4ed0169..708ed171 100644 --- a/inc/container.class.php +++ b/inc/container.class.php @@ -687,7 +687,7 @@ public static function generateTemplate($fields) ['%%CLASSNAME%%', '%%ITEMTYPE%%', '%%CONTAINER%%', '%%ITEMTYPE_RIGHT%%'], [ $classname, - str_replace('\'', '', var_export($itemtype, true)), + var_export($itemtype, true), var_export($fields['id'], true), var_export($itemtype::$rightname, true), ], From f720cfd8f56196947c864c840f881b771d356843 Mon Sep 17 00:00:00 2001 From: MyuTsu Date: Fri, 13 Feb 2026 17:02:00 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d13444..74e4cef9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] + +### Fixed + +- Fix error during container table installation + ## [1.21.27] - 2026-02-12 - Fix template generation error on update