From aa61119ad5d7d12f9130220284e947018c10ac35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Mon, 18 Dec 2017 12:47:12 -0200 Subject: [PATCH] Fix variables wrongly wrapped with an array MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix #13873 Signed-off-by: MaurĂ­cio Meneghini Fauth --- templates/privileges/privileges_summary.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/privileges/privileges_summary.twig b/templates/privileges/privileges_summary.twig index 266697bf9d..31f2173d41 100644 --- a/templates/privileges/privileges_summary.twig +++ b/templates/privileges/privileges_summary.twig @@ -31,9 +31,9 @@ {% else %} {% for privilege in privileges %} - {% include 'privileges/privileges_summary_row.twig' with [ + {% include 'privileges/privileges_summary_row.twig' with privilege|merge({'type': type}) - ] only %} + only %} {% endfor %} {% endif %}