From cbeae873de7f99c2c6ea7cd427f332d405e4400d Mon Sep 17 00:00:00 2001 From: Stanislas Kita <7335054+stonebuzz@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:02:51 +0200 Subject: [PATCH 1/2] 2.14.4 --- CHANGELOG.md | 2 +- plugin.xml | 5 +++++ setup.php | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98d43e..03031c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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] +## [2.14.4] - 2026-06-24 ### Fixed diff --git a/plugin.xml b/plugin.xml index a59bc0f..26454cf 100644 --- a/plugin.xml +++ b/plugin.xml @@ -33,6 +33,11 @@ TECLIB' + + 2.14.4 + ~11.0.1 + https://github.com/pluginsGLPI/tag/releases/download/2.14.4/glpi-tag-2.14.4.tar.bz2 + 2.14.3 ~11.0.1 diff --git a/setup.php b/setup.php index c44ae76..357a801 100644 --- a/setup.php +++ b/setup.php @@ -39,7 +39,7 @@ use function Safe\define; -define('PLUGIN_TAG_VERSION', '2.14.3'); +define('PLUGIN_TAG_VERSION', '2.14.4'); // Minimal GLPI version, inclusive define("PLUGIN_TAG_MIN_GLPI", "11.0.1"); From a35b2be8989384b81b4df1cc85058e2c68912a2d Mon Sep 17 00:00:00 2001 From: Stanislas Kita <7335054+stonebuzz@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:10:08 +0200 Subject: [PATCH 2/2] fix rector --- inc/tag.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/tag.class.php b/inc/tag.class.php index 24b7de9..a7eb07a 100644 --- a/inc/tag.class.php +++ b/inc/tag.class.php @@ -544,7 +544,7 @@ public static function preKanbanContent($params = []) $color = $data['color'] ?: '#DDDDDD'; $textcolor = idealTextColor($color); $style = sprintf('background-color: %s; color: %s;', $color, $textcolor); - $content .= sprintf("%s  ", $style, $title, htmlentities($name, ENT_QUOTES, "UTF-8")); + $content .= sprintf("%s  ", $style, $title, htmlentities((string) $name, ENT_QUOTES, "UTF-8")); } $content .= "";