aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template
diff options
context:
space:
mode:
author3D-I <marktravai@gmail.com>2018-12-24 09:45:02 +0100
committer3D-I <marktravai@gmail.com>2018-12-24 09:46:41 +0100
commit8f90b794570e520eec82fc8c1f87ae5c93696873 (patch)
treea61def769a56cd0f9758f75c48d07486089edccf /phpBB/styles/prosilver/template
parent871875d9aa3d0b0a17a0eb1936323d5737a438f5 (diff)
downloadforums-8f90b794570e520eec82fc8c1f87ae5c93696873.tar
forums-8f90b794570e520eec82fc8c1f87ae5c93696873.tar.gz
forums-8f90b794570e520eec82fc8c1f87ae5c93696873.tar.bz2
forums-8f90b794570e520eec82fc8c1f87ae5c93696873.tar.xz
forums-8f90b794570e520eec82fc8c1f87ae5c93696873.zip
[ticket/15918] Remove redundant escape JS
In mcp_ban.html and coherently use twig syntax PHPBB3-15918
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r--phpBB/styles/prosilver/template/mcp_ban.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_ban.html b/phpBB/styles/prosilver/template/mcp_ban.html
index d953f1039f..f3b767f3e4 100644
--- a/phpBB/styles/prosilver/template/mcp_ban.html
+++ b/phpBB/styles/prosilver/template/mcp_ban.html
@@ -9,12 +9,12 @@
ban_give_reason[-1] = '';
<!-- BEGIN bans -->
- ban_length['{bans.BAN_ID}'] = '{bans.A_LENGTH}';
+ ban_length['{bans.BAN_ID}'] = '{{ bans.A_LENGTH }}';
<!-- IF bans.A_REASON -->
- ban_reason['{bans.BAN_ID}'] = '{{ bans.A_REASON | e('js') }}';
+ ban_reason['{bans.BAN_ID}'] = '{{ bans.A_REASON }}';
<!-- ENDIF -->
<!-- IF bans.A_GIVE_REASON -->
- ban_give_reason['{bans.BAN_ID}'] = '{{ bans.A_GIVE_REASON | e('js') }}';
+ ban_give_reason['{bans.BAN_ID}'] = '{{ bans.A_GIVE_REASON }}';
<!-- ENDIF -->
<!-- END bans -->