aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/bbcode.php
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2017-08-15 15:41:56 +0700
committerrxu <rxu@mail.ru>2017-08-15 15:41:56 +0700
commitaabb9d2e488e465d48d9910f98a861ab96f55f74 (patch)
treeac658a6a7090d4f35bde5222ca5e2d7c32e15fa7 /phpBB/includes/bbcode.php
parent1e605efaf126f5474bb1be99e7fdaed834ebb2a0 (diff)
downloadforums-aabb9d2e488e465d48d9910f98a861ab96f55f74.tar
forums-aabb9d2e488e465d48d9910f98a861ab96f55f74.tar.gz
forums-aabb9d2e488e465d48d9910f98a861ab96f55f74.tar.bz2
forums-aabb9d2e488e465d48d9910f98a861ab96f55f74.tar.xz
forums-aabb9d2e488e465d48d9910f98a861ab96f55f74.zip
[ticket/15323] Allow Twig syntax in bbcode.html
PHPBB3-15323
Diffstat (limited to 'phpBB/includes/bbcode.php')
-rw-r--r--phpBB/includes/bbcode.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php
index e8492a82a3..6572c0ad2c 100644
--- a/phpBB/includes/bbcode.php
+++ b/phpBB/includes/bbcode.php
@@ -501,7 +501,10 @@ class bbcode
// Turn template blocks into PHP assignment statements for the values of $bbcode_tpl..
$this->bbcode_template = array();
- $matches = preg_match_all('#<!-- BEGIN (.*?) -->(.*?)<!-- END (?:.*?) -->#', $tpl, $match);
+ // Capture the BBCode template matches
+ // Allow phpBB template or the Twig syntax
+ $matches = (preg_match_all('#<!-- BEGIN (.*?) -->(.*?)<!-- END (?:.*?) -->#', $tpl, $match)) ?:
+ preg_match_all('#{% for (.*?) in .*? %}(.*?){% endfor %}#s', $tpl, $match);
for ($i = 0; $i < $matches; $i++)
{