mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/11201] Remove call by refernce
PHPBB3-11201
This commit is contained in:
parent
0d79ccaadd
commit
190c2e989a
2 changed files with 2 additions and 2 deletions
|
@ -64,6 +64,6 @@ class type_string extends type_string_common implements type_interface
|
||||||
*/
|
*/
|
||||||
public function validate_profile_field(&$field_value, $field_data)
|
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)
|
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…
Add table
Reference in a new issue