From 13914b91df40df99d826036a2a05f4f8653122cd Mon Sep 17 00:00:00 2001 From: 3D-I <480857+3D-I@users.noreply.github.com> Date: Mon, 25 May 2020 01:59:31 +0200 Subject: [PATCH 1/4] [ticket/16496] Fix html special chars in custom BBcode help line PHPBB3-16496 --- phpBB/includes/functions_display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index d077cd0ef7..d7ecc82895 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1122,7 +1122,7 @@ function display_custom_bbcodes() 'BBCODE_ID' => $num_predefined_bbcodes + ($i * 2), 'BBCODE_TAG' => $row['bbcode_tag'], 'BBCODE_TAG_CLEAN' => str_replace('=', '-', $row['bbcode_tag']), - 'BBCODE_HELPLINE' => $row['bbcode_helpline'], + 'BBCODE_HELPLINE' => htmlspecialchars_decode($row['bbcode_helpline']), ); /** From 599adb3003571b60ec01324d897c16bff23ff300 Mon Sep 17 00:00:00 2001 From: 3D-I <480857+3D-I@users.noreply.github.com> Date: Tue, 26 May 2020 13:34:09 +0200 Subject: [PATCH 2/4] [ticket/16496] Fix html special chars in custom BBcode help line PHPBB3-16496 --- phpBB/adm/style/acp_posting_buttons.html | 2 +- phpBB/includes/functions_display.php | 2 +- phpBB/styles/prosilver/template/posting_buttons.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/adm/style/acp_posting_buttons.html b/phpBB/adm/style/acp_posting_buttons.html index 614d6fae40..dfe09ae12e 100644 --- a/phpBB/adm/style/acp_posting_buttons.html +++ b/phpBB/adm/style/acp_posting_buttons.html @@ -44,7 +44,7 @@ - + diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index d7ecc82895..d077cd0ef7 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1122,7 +1122,7 @@ function display_custom_bbcodes() 'BBCODE_ID' => $num_predefined_bbcodes + ($i * 2), 'BBCODE_TAG' => $row['bbcode_tag'], 'BBCODE_TAG_CLEAN' => str_replace('=', '-', $row['bbcode_tag']), - 'BBCODE_HELPLINE' => htmlspecialchars_decode($row['bbcode_helpline']), + 'BBCODE_HELPLINE' => $row['bbcode_helpline'], ); /** diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html index cb305eee4b..a59e79ef2a 100644 --- a/phpBB/styles/prosilver/template/posting_buttons.html +++ b/phpBB/styles/prosilver/template/posting_buttons.html @@ -96,7 +96,7 @@ - From d40cb5f6181cf7199a0ef312b348c6cb6c9af801 Mon Sep 17 00:00:00 2001 From: 3D-I <480857+3D-I@users.noreply.github.com> Date: Tue, 26 May 2020 20:40:45 +0200 Subject: [PATCH 3/4] [ticket/16496] Fix html special chars in custom BBcode help line PHPBB3-16496 --- phpBB/adm/style/acp_posting_buttons.html | 2 +- phpBB/includes/functions_display.php | 2 +- phpBB/styles/prosilver/template/posting_buttons.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/adm/style/acp_posting_buttons.html b/phpBB/adm/style/acp_posting_buttons.html index dfe09ae12e..614d6fae40 100644 --- a/phpBB/adm/style/acp_posting_buttons.html +++ b/phpBB/adm/style/acp_posting_buttons.html @@ -44,7 +44,7 @@ - + diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index d077cd0ef7..d7ecc82895 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1122,7 +1122,7 @@ function display_custom_bbcodes() 'BBCODE_ID' => $num_predefined_bbcodes + ($i * 2), 'BBCODE_TAG' => $row['bbcode_tag'], 'BBCODE_TAG_CLEAN' => str_replace('=', '-', $row['bbcode_tag']), - 'BBCODE_HELPLINE' => $row['bbcode_helpline'], + 'BBCODE_HELPLINE' => htmlspecialchars_decode($row['bbcode_helpline']), ); /** diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html index a59e79ef2a..cb305eee4b 100644 --- a/phpBB/styles/prosilver/template/posting_buttons.html +++ b/phpBB/styles/prosilver/template/posting_buttons.html @@ -96,7 +96,7 @@ - From e9e9ab8919fadb9124f7ff36e0ef5847882af26d Mon Sep 17 00:00:00 2001 From: 3D-I <480857+3D-I@users.noreply.github.com> Date: Thu, 28 May 2020 13:09:48 +0200 Subject: [PATCH 4/4] [ticket/16496] Fix html special chars in custom BBcode help line PHPBB3-16496 --- phpBB/adm/style/acp_posting_buttons.html | 2 +- phpBB/includes/functions_display.php | 2 +- phpBB/styles/prosilver/template/posting_buttons.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/adm/style/acp_posting_buttons.html b/phpBB/adm/style/acp_posting_buttons.html index 614d6fae40..dfe09ae12e 100644 --- a/phpBB/adm/style/acp_posting_buttons.html +++ b/phpBB/adm/style/acp_posting_buttons.html @@ -44,7 +44,7 @@ - + diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index d7ecc82895..d077cd0ef7 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1122,7 +1122,7 @@ function display_custom_bbcodes() 'BBCODE_ID' => $num_predefined_bbcodes + ($i * 2), 'BBCODE_TAG' => $row['bbcode_tag'], 'BBCODE_TAG_CLEAN' => str_replace('=', '-', $row['bbcode_tag']), - 'BBCODE_HELPLINE' => htmlspecialchars_decode($row['bbcode_helpline']), + 'BBCODE_HELPLINE' => $row['bbcode_helpline'], ); /** diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html index cb305eee4b..a59e79ef2a 100644 --- a/phpBB/styles/prosilver/template/posting_buttons.html +++ b/phpBB/styles/prosilver/template/posting_buttons.html @@ -96,7 +96,7 @@ -