From 276898be28ad569b660af8b910177dc7413aa1d4 Mon Sep 17 00:00:00 2001 From: Heiko Weber Date: Fri, 21 Jul 2023 16:21:01 +0200 Subject: [PATCH] column title is already escaped here --- gyro/core/view/templates/default/widgets/sorter.tpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gyro/core/view/templates/default/widgets/sorter.tpl.php b/gyro/core/view/templates/default/widgets/sorter.tpl.php index d2273f55..bd072429 100644 --- a/gyro/core/view/templates/default/widgets/sorter.tpl.php +++ b/gyro/core/view/templates/default/widgets/sorter.tpl.php @@ -15,7 +15,7 @@ if ($sorter_loop_column['column'] != $sorter_current_column['column']) { $sorter_loop_column_title = GyroString::escape($sorter_loop_column['title']); $out[] = html::a( - GyroString::escape($sorter_loop_column_title), + $sorter_loop_column_title, $sorter_loop_column['link'], tr('Sort by %column', array('app', 'core'), array('%column' => $sorter_loop_column_title)) );