aboutsummaryrefslogtreecommitdiffstats
path: root/tests/profile
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-09-27 17:31:24 +0200
committerNils Adermann <naderman@naderman.de>2011-09-27 17:31:24 +0200
commitb571b3e0326cc6fe987ceb317ee803d4921cc133 (patch)
tree1f6e1691d14c727c93dd8d0cd7e85eb91f1ff924 /tests/profile
parentcc2ecc9171a0bda2e770177c4b2775361aa5832b (diff)
downloadforums-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.php2
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);
}