mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 14:35:56 +02:00
[ticket/11201] Remove call by refernce
PHPBB3-11201
This commit is contained in:
parent
0d79ccaadd
commit
190c2e989a
@ -64,6 +64,6 @@ class type_string extends type_string_common implements type_interface
|
||||
*/
|
||||
public function validate_profile_field(&$field_value, $field_data)
|
||||
{
|
||||
return $this->validate_string_profile_field('string', &$field_value, $field_data);
|
||||
return $this->validate_string_profile_field('string', $field_value, $field_data);
|
||||
}
|
||||
}
|
||||
|
@ -64,6 +64,6 @@ class type_text extends type_string_common implements type_interface
|
||||
*/
|
||||
public function validate_profile_field(&$field_value, $field_data)
|
||||
{
|
||||
return $this->validate_string_profile_field('text', &$field_value, $field_data);
|
||||
return $this->validate_string_profile_field('text', $field_value, $field_data);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user