mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-12 19:54:12 +02:00
[ticket/10394] Remove call-time pass by reference from tests for PHP 5.4
PHPBB3-10394
This commit is contained in:
@@ -48,7 +48,7 @@ class phpbb_profile_custom_test extends phpbb_database_test_case
|
||||
);
|
||||
|
||||
$cp = new custom_profile;
|
||||
$result = $cp->validate_profile_field(FIELD_DROPDOWN, &$field_value, $field_data);
|
||||
$result = $cp->validate_profile_field(FIELD_DROPDOWN, $field_value, $field_data);
|
||||
|
||||
$this->assertEquals($expected, $result, $description);
|
||||
}
|
||||
|
Reference in New Issue
Block a user