mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 02:51:35 +02:00
[ticket/12793] Changing get_profile_contact_value to get_profile_value_raw
Changing the return to get_profile_value_raw PHPBB3-12793
This commit is contained in:
@@ -127,12 +127,7 @@ abstract class type_string_common extends type_base
|
||||
*/
|
||||
public function get_profile_contact_value($field_value, $field_data)
|
||||
{
|
||||
if (($field_value === null || $field_value === '') && !$field_data['field_show_novalue'])
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return $field_value;
|
||||
return $this->get_profile_value_raw($field_value, $field_data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user