From ecd7b1417127c1f8b4c6d45a7e15cbf099ac5ecb Mon Sep 17 00:00:00 2001 From: 3D-I Date: Wed, 14 Apr 2021 23:22:47 +0200 Subject: [PATCH] [ticket/16757] Properly handle RTL text in ACP QA Captcha HTML Twig version PHPBB3-16757 --- phpBB/adm/style/captcha_qa_acp.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/phpBB/adm/style/captcha_qa_acp.html b/phpBB/adm/style/captcha_qa_acp.html index b1cbb970e1..26598c7c2b 100644 --- a/phpBB/adm/style/captcha_qa_acp.html +++ b/phpBB/adm/style/captcha_qa_acp.html @@ -24,16 +24,18 @@ {L_ACTION} + - - - {# RTL is already managed by CSS #} - {{ questions.QUESTION_TEXT }} - {questions.QUESTION_LANG} - {ICON_EDIT} {ICON_DELETE} - - + {% for question in questions %} + + {# RTL is already managed by CSS #} + {{ question.QUESTION_TEXT }} + {{ question.QUESTION_LANG }} + {{ ICON_EDIT }} {{ ICON_DELETE }} + + {% endfor %} +