From 5c9c3225de86f784f2852f5ea3c1ef10db0159da Mon Sep 17 00:00:00 2001 From: MyuTsu Date: Mon, 27 Oct 2025 14:47:10 +0100 Subject: [PATCH 1/2] fix(migration_status): fix Twig error on migration_status page --- templates/migration_status.html.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/migration_status.html.twig b/templates/migration_status.html.twig index 79a4377..8ec5fe7 100644 --- a/templates/migration_status.html.twig +++ b/templates/migration_status.html.twig @@ -83,12 +83,12 @@ {% for key, genericobject_type in paginated_types %}
- {% if customassets[genericobject_type.name] and customassets[genericobject_type.name].icon %} + {% if customassets[genericobject_type.name] is defined and customassets[genericobject_type.name].icon %} {% else %} @@ -99,7 +99,7 @@
- {% if customassets[genericobject_type.name] %} + {% if customassets[genericobject_type.name] is defined %}
{{ __('Migrated', 'genericobject') }} From 9ba555cfa8274bc38e6f68df32f2d6e5ece8adf3 Mon Sep 17 00:00:00 2001 From: MyuTsu Date: Mon, 27 Oct 2025 15:34:45 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9709ae..15bc366 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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] - XXXX-XX-XX + +- Fix Twig error on migration_status page + ## [3.0.0 End-of-Life Updater] - 2025-30-09 - End-of-Life Support and Compatibility with GLPI 11