mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
Merge branch '3.2.x'
* 3.2.x: [ticket/14888] Missing check for disabled profile field types
This commit is contained in:
commit
874f31fc52
1 changed files with 4 additions and 0 deletions
|
@ -757,6 +757,10 @@ class acp_profile
|
|||
$s_one_need_edit = true;
|
||||
}
|
||||
|
||||
if (!isset($this->type_collection[$row['field_type']]))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
$profile_field = $this->type_collection[$row['field_type']];
|
||||
$template->assign_block_vars('fields', array(
|
||||
'FIELD_IDENT' => $row['field_ident'],
|
||||
|
|
Loading…
Add table
Reference in a new issue