1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge branch 'develop-ascraeus' into develop

* develop-ascraeus:
  [ticket/12793] Tests (added and changed)
  [ticket/12793] Changing get_profile_contact_value to get_profile_value_raw
  [ticket/12793] String '0' does not display for string profile fields
This commit is contained in:
Joas Schilling
2014-07-27 20:12:13 +02:00
2 changed files with 11 additions and 10 deletions

View File

@@ -249,8 +249,14 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
array(
0,
array('field_show_novalue' => false),
null,
'Field should return null for empty integer without show_novalue',
0,
'Field should return value of integer 0 without show_novalue',
),
array(
'0',
array('field_show_novalue' => false),
'0',
'Field should return string 0',
),
array(
0,