From acb4c47a9fe418284f2dab73d32bda75e34ed04a Mon Sep 17 00:00:00 2001 From: ctrlcctrlv Date: Thu, 8 Aug 2013 18:58:44 +0000 Subject: [PATCH] Allow for HTML in the board subtitle Conflicts: inc/config.php --- inc/config.php | 3 +++ templates/index.html | 6 +++++- templates/mod/dashboard.html | 8 +++++++- templates/thread.html | 8 ++++++-- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/inc/config.php b/inc/config.php index fae7d2a5..d8a0ead2 100644 --- a/inc/config.php +++ b/inc/config.php @@ -615,6 +615,9 @@ // Number of reports you can create at once. $config['report_limit'] = 3; + // Allow unfiltered HTML in board subtitles. This is useful for placing icons and links. + $config['allow_subtitle_html'] = false; + /* * ==================== * Display settings diff --git a/templates/index.html b/templates/index.html index e32ac253..d5e6cd18 100644 --- a/templates/index.html +++ b/templates/index.html @@ -13,7 +13,11 @@

{{ board.url }} - {{ board.title|e }}

{% if board.subtitle %} - {{ board.subtitle|e }} + {% if config.allow_subtitle_html %} + {{ board.subtitle }} + {% else %} + {{ board.subtitle|e }} + {% endif %} {% endif %} {% if mod %}

{% trans %}Return to dashboard{% endtrans %}

{% endif %}
diff --git a/templates/mod/dashboard.html b/templates/mod/dashboard.html index e9fb7c9c..e2f7507d 100644 --- a/templates/mod/dashboard.html +++ b/templates/mod/dashboard.html @@ -8,7 +8,13 @@ - {{ board.title|e }} {% if board.subtitle %} - — {{ board.subtitle|e }} + — + {% if config.allow_subtitle_html %} + {{ board.subtitle }} + {% else %} + {{ board.subtitle|e }} + {% endif %} + {% endif %} {% if mod|hasPermission(config.mod.manageboards) %} [{% trans 'edit' %}] diff --git a/templates/thread.html b/templates/thread.html index 97f8a3db..e8c43ef7 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -13,7 +13,11 @@

{{ board.url }} - {{ board.title|e }}

{% if board.subtitle %} - {{ board.subtitle|e }} + {% if config.allow_subtitle_html %} + {{ board.subtitle }} + {% else %} + {{ board.subtitle|e }} + {% endif %} {% endif %} {% if mod %}

{% trans %}Return to dashboard{% endtrans %}

{% endif %}
@@ -42,4 +46,4 @@ ready(); {% endraw %} - \ No newline at end of file +