1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-28 22:17:31 +01:00
Files
php-phpbb/phpBB/styles/all/template/macros/forms/textarea.twig
2023-04-09 13:43:05 +02:00

10 lines
178 B
Twig

{% apply replace({"\n": ' ', '\t': ''}) %}
<textarea
id="{{ ID }}"
name="{{ NAME }}"
rows="{{ ROWS }}"
cols="{{ COLS }}">
{{ CONTENT }}
</textarea>
{% endapply %}