mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-07 10:24:48 +02:00
[ticket/13528] Return correct translation instead of is_set()
PHPBB3-13528
This commit is contained in:
@ -173,7 +173,7 @@ class type_bool extends type_base
|
||||
}
|
||||
else
|
||||
{
|
||||
return $this->lang_helper->is_set($field_id, $lang_id, $field_value + 1);
|
||||
return $this->lang_helper->is_set($field_id, $lang_id, $field_value + 1) ? $this->lang_helper->get($field_id, $lang_id, $field_value + 1) : null;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user