diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 93b81b1997..3c3d3b599a 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -101,6 +101,7 @@
[Fix] Also remove data from friend/foe table when deleting user. (Bug #45345 - Patch by nickvergessen)
[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.
[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)
+ [Change] Template engine now permits to a limited extent variable includes.
[Feature] Backported 3.2 captcha plugins.
[Feature] Introduced new ACM plugins:
diff --git a/phpBB/includes/functions_template.php b/phpBB/includes/functions_template.php
index 42a5eb3248..d9d9abfe46 100644
--- a/phpBB/includes/functions_template.php
+++ b/phpBB/includes/functions_template.php
@@ -128,9 +128,9 @@ class template_compile
$php_blocks = $matches[1];
$code = preg_replace('#.*?#s', '', $code);
- preg_match_all('##', $code, $matches);
+ preg_match_all('##', $code, $matches);
$include_blocks = $matches[1];
- $code = preg_replace('##', '', $code);
+ $code = preg_replace('##', '', $code);
preg_match_all('##', $code, $matches);
$includephp_blocks = $matches[1];
@@ -193,8 +193,39 @@ class template_compile
case 'INCLUDE':
$temp = array_shift($include_blocks);
+
+ // Dynamic includes
+ // Cheap match rather than a full blown regexp, we already know
+ // the format of the input so just use string manipulation.
+ if ($temp[0] == '{')
+ {
+ $file = false;
+
+ if ($temp[1] == '$')
+ {
+ $var = substr($temp, 2, -1);
+ //$file = $this->template->_tpldata['DEFINE']['.'][$var];
+ $temp = "\$this->_tpldata['DEFINE']['.']['$var']";
+ }
+ else
+ {
+ $var = substr($temp, 1, -1);
+ //$file = $this->template->_rootref[$var];
+ $temp = "\$this->_rootref['$var']";
+ }
+ }
+ else
+ {
+ $file = $temp;
+ }
+
$compile_blocks[] = 'compile_tag_include($temp) . ' ?>';
- $this->template->_tpl_include($temp, false);
+
+ // No point in checking variable includes
+ if ($file)
+ {
+ $this->template->_tpl_include($file, false);
+ }
break;
case 'INCLUDEPHP':
@@ -594,6 +625,12 @@ class template_compile
*/
function compile_tag_include($tag_args)
{
+ // Process dynamic includes
+ if ($tag_args[0] == '$')
+ {
+ return "if (isset($tag_args)) { \$this->_tpl_include($tag_args); }";
+ }
+
return "\$this->_tpl_include('$tag_args');";
}