diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-11 19:17:24 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-11 19:17:24 +0100 |
commit | 30fbaab8dee3ff3890ed2b1d86bb56392b4037e0 (patch) | |
tree | cf16738b500445ae7164c71ec1a2f665b107e436 /phpBB/phpbb/profilefields/manager.php | |
parent | 0b2b76f9514fed54c92e439eadbef6dc80290cd3 (diff) | |
download | forums-30fbaab8dee3ff3890ed2b1d86bb56392b4037e0.tar forums-30fbaab8dee3ff3890ed2b1d86bb56392b4037e0.tar.gz forums-30fbaab8dee3ff3890ed2b1d86bb56392b4037e0.tar.bz2 forums-30fbaab8dee3ff3890ed2b1d86bb56392b4037e0.tar.xz forums-30fbaab8dee3ff3890ed2b1d86bb56392b4037e0.zip |
[ticket/12184] Fix undefined variable tpl_fields in profile field manager
PHPBB3-12184
Diffstat (limited to 'phpBB/phpbb/profilefields/manager.php')
-rw-r--r-- | phpBB/phpbb/profilefields/manager.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/phpbb/profilefields/manager.php b/phpBB/phpbb/profilefields/manager.php index 6a8d32f150..ac2542a6d4 100644 --- a/phpBB/phpbb/profilefields/manager.php +++ b/phpBB/phpbb/profilefields/manager.php @@ -255,6 +255,8 @@ class manager $this->build_cache(); } + $tpl_fields = array(); + // Go through the fields in correct order foreach ($this->profile_cache as $field_ident => $field_data) { |