diff options
author | Chris Smith <toonarmy@phpbb.com> | 2011-09-27 00:50:53 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2011-09-27 00:50:53 +0100 |
commit | 02a24e2439a0ae4c23c94a2aacc0fb407d2ccc0f (patch) | |
tree | cc27ba4a7927e6498620ee6520617aea79b63a3a | |
parent | 0f589d9ce43272153c3b7bd300d1a15fabb87cdd (diff) | |
download | forums-02a24e2439a0ae4c23c94a2aacc0fb407d2ccc0f.tar forums-02a24e2439a0ae4c23c94a2aacc0fb407d2ccc0f.tar.gz forums-02a24e2439a0ae4c23c94a2aacc0fb407d2ccc0f.tar.bz2 forums-02a24e2439a0ae4c23c94a2aacc0fb407d2ccc0f.tar.xz forums-02a24e2439a0ae4c23c94a2aacc0fb407d2ccc0f.zip |
[ticket/10392] Missed fix for S_BLOCK_NAME.
PHPBB3-10392
-rw-r--r-- | phpBB/includes/template/filter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/filter.php b/phpBB/includes/template/filter.php index 1c8b45307c..b6b9a2963e 100644 --- a/phpBB/includes/template/filter.php +++ b/phpBB/includes/template/filter.php @@ -898,7 +898,7 @@ class phpbb_template_filter extends php_user_filter break; case 'S_BLOCK_NAME': - $varref = "'$namespace'"; + $varref = "'$local_namespace'"; break; default: |