diff options
author | PayBas <contact@paybas.com> | 2014-04-29 16:16:19 +0200 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-24 21:47:29 +0530 |
commit | 507eca319d2bff9779d662a36b845017b7464e68 (patch) | |
tree | f6416f51ce8e5d1420a1ad6aad77fe67f662cab5 /phpBB/phpbb/profilefields/manager.php | |
parent | 4169fd65f07f67f99e64e7ab962d09c1e10f14dc (diff) | |
download | forums-507eca319d2bff9779d662a36b845017b7464e68.tar forums-507eca319d2bff9779d662a36b845017b7464e68.tar.gz forums-507eca319d2bff9779d662a36b845017b7464e68.tar.bz2 forums-507eca319d2bff9779d662a36b845017b7464e68.tar.xz forums-507eca319d2bff9779d662a36b845017b7464e68.zip |
[ticket/12334] Implemented get_profile_valueid method
PHPBB3-12334
Diffstat (limited to 'phpBB/phpbb/profilefields/manager.php')
-rw-r--r-- | phpBB/phpbb/profilefields/manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/manager.php b/phpBB/phpbb/profilefields/manager.php index 7602abf9aa..a2b931ce27 100644 --- a/phpBB/phpbb/profilefields/manager.php +++ b/phpBB/phpbb/profilefields/manager.php @@ -389,7 +389,7 @@ class manager { $profile_field = $this->type_collection[$ident_ary['data']['field_type']]; $value = $profile_field->get_profile_value($ident_ary['value'], $ident_ary['data']); - $valueid = (!$ident_ary['value'] && !$ident_ary['data']['field_show_novalue']) ? $ident_ary['data']['field_novalue'] : $ident_ary['value']; + $valueid = $profile_field->get_profile_valueid($ident_ary['value'], $ident_ary['data']); if ($value === null) { |