1
0
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:
Nils Adermann
2011-09-27 17:31:24 +02:00
parent cc2ecc9171
commit b571b3e032
2 changed files with 3 additions and 3 deletions

View File

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