1
0
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:
Joas Schilling 2014-01-14 10:50:12 +01:00
parent 0d79ccaadd
commit 190c2e989a
2 changed files with 2 additions and 2 deletions

View File

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

View File

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