1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-23 19:45:10 +01:00

Merge pull request #3313 from nickvergessen/ticket/13528

[ticket/13528] Return correct translation instead of is_set()

* nickvergessen/ticket/13528:
  [ticket/13528] Return correct translation instead of is_set()
This commit is contained in:
Tristan Darricau 2015-01-20 23:36:23 +01:00
commit 9334100cb3

View File

@ -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;
}
}