aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-06-29 15:26:36 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-06-29 15:26:36 +0530
commit5182ec09a5ad30a40eb21e3a08fc8739e173128c (patch)
tree644b8f5b4b9ebc5676f5b9bb21341a205a7e2e23 /phpBB/includes
parentd72b5aaf1bd6d959c2b06e923ab76fc1f370e455 (diff)
downloadforums-5182ec09a5ad30a40eb21e3a08fc8739e173128c.tar
forums-5182ec09a5ad30a40eb21e3a08fc8739e173128c.tar.gz
forums-5182ec09a5ad30a40eb21e3a08fc8739e173128c.tar.bz2
forums-5182ec09a5ad30a40eb21e3a08fc8739e173128c.tar.xz
forums-5182ec09a5ad30a40eb21e3a08fc8739e173128c.zip
[ticket/11593] initialize $is_expr as null before being passed to get_varref
PHPBB3-11593
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/template/filter.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/template/filter.php b/phpBB/includes/template/filter.php
index f2bd442010..1c0a56c9f5 100644
--- a/phpBB/includes/template/filter.php
+++ b/phpBB/includes/template/filter.php
@@ -475,6 +475,7 @@ class phpbb_template_filter extends php_user_filter
*/
private function compile_var_tags(&$text_blocks)
{
+ $is_expr = null;
$text_blocks = $this->get_varref($text_blocks, $is_expr);
$lang_replaced = $this->compile_language_tags($text_blocks);