diff options
| author | Nils Adermann <naderman@naderman.de> | 2011-09-27 17:31:24 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2011-09-27 17:31:24 +0200 |
| commit | b571b3e0326cc6fe987ceb317ee803d4921cc133 (patch) | |
| tree | 1f6e1691d14c727c93dd8d0cd7e85eb91f1ff924 /tests/profile | |
| parent | cc2ecc9171a0bda2e770177c4b2775361aa5832b (diff) | |
| download | forums-b571b3e0326cc6fe987ceb317ee803d4921cc133.tar forums-b571b3e0326cc6fe987ceb317ee803d4921cc133.tar.gz forums-b571b3e0326cc6fe987ceb317ee803d4921cc133.tar.bz2 forums-b571b3e0326cc6fe987ceb317ee803d4921cc133.tar.xz forums-b571b3e0326cc6fe987ceb317ee803d4921cc133.zip | |
[ticket/10394] Remove call-time pass by reference from tests for PHP 5.4
PHPBB3-10394
Diffstat (limited to 'tests/profile')
| -rw-r--r-- | tests/profile/custom_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/profile/custom_test.php b/tests/profile/custom_test.php index 0e0a851243..585182e583 100644 --- a/tests/profile/custom_test.php +++ b/tests/profile/custom_test.php @@ -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); } |
