From bc022fe64dc054e1b83c2dd17d9c8587adb4d18e Mon Sep 17 00:00:00 2001 From: Herafia Date: Wed, 17 Jun 2026 15:22:32 +0200 Subject: [PATCH 1/2] fix escape chars --- hook.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hook.php b/hook.php index 16ba359..3d33301 100644 --- a/hook.php +++ b/hook.php @@ -578,7 +578,7 @@ function plugin_escalade_getAddSearchOptions($itemtype) $sopt[1881]['table'] = 'glpi_groups'; $sopt[1881]['field'] = 'completename'; $sopt[1881]['datatype'] = 'dropdown'; - $sopt[1881]['name'] = __s("Group concerned by the escalation", "escalade"); + $sopt[1881]['name'] = __("Group concerned by the escalation", "escalade"); $sopt[1881]['forcegroupby'] = true; $sopt[1881]['massiveaction'] = false; $sopt[1881]['condition'] = ['is_assign' => 1]; @@ -596,7 +596,7 @@ function plugin_escalade_getAddSearchOptions($itemtype) 'id' => '1991', 'table' => 'glpi_plugin_escalade_histories', 'field' => 'id', - 'name' => __s("Number of escalations", "escalade"), + 'name' => __("Number of escalations", "escalade"), 'forcegroupby' => true, 'usehaving' => true, 'datatype' => 'count', @@ -610,7 +610,7 @@ function plugin_escalade_getAddSearchOptions($itemtype) 'id' => '1992', 'table' => 'glpi_plugin_escalade_histories', 'field' => 'counter', - 'name' => __s("Number of escalations between two groups", "escalade"), + 'name' => __("Number of escalations between two groups", "escalade"), 'datatype' => 'integer', 'joinparams' => [ 'jointype' => 'child', From b16719a216a29b1606df3efc33f0913ef3404969 Mon Sep 17 00:00:00 2001 From: Herafia Date: Wed, 17 Jun 2026 15:25:40 +0200 Subject: [PATCH 2/2] CHANGELOG --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11c3ef1..fbcbe30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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] + +- Fix escape chars ## [2.10.3] - 2026-06-10