Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand All @@ -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',
Expand All @@ -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',
Expand Down