mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 06:25:04 +02:00
[ticket/16757] Properly handle RTL text in ACP QA Captcha HTML
Twig version PHPBB3-16757
This commit is contained in:
parent
65a1ed0f82
commit
ecd7b14171
@ -24,16 +24,18 @@
|
|||||||
<td style="vertical-align: top; width: 50px; text-align: center; white-space: nowrap;">{L_ACTION}</td>
|
<td style="vertical-align: top; width: 50px; text-align: center; white-space: nowrap;">{L_ACTION}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
<tbody>
|
<tbody>
|
||||||
<!-- BEGIN questions -->
|
{% for question in questions %}
|
||||||
<tr>
|
<tr>
|
||||||
{# RTL is already managed by CSS #}
|
{# RTL is already managed by CSS #}
|
||||||
<td>{{ questions.QUESTION_TEXT }}</td>
|
<td>{{ question.QUESTION_TEXT }}</td>
|
||||||
<td style="text-align: center;">{questions.QUESTION_LANG}</td>
|
<td style="text-align: center;">{{ question.QUESTION_LANG }}</td>
|
||||||
<td style="text-align: center;"><a href="{questions.U_EDIT}">{ICON_EDIT}</a> <a href="{questions.U_DELETE}">{ICON_DELETE}</a></td>
|
<td style="text-align: center;"><a href="{{ question.U_EDIT }}">{{ ICON_EDIT }}</a> <a href="{{ question.U_DELETE }}">{{ ICON_DELETE }}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- END questions -->
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
<fieldset class="quick">
|
<fieldset class="quick">
|
||||||
<input class="button1" type="submit" name="add" value="{L_ADD}" />
|
<input class="button1" type="submit" name="add" value="{L_ADD}" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user