diff options
| author | David King <imkingdavid@gmail.com> | 2013-09-12 20:42:05 -0700 |
|---|---|---|
| committer | David King <imkingdavid@gmail.com> | 2013-09-12 20:42:05 -0700 |
| commit | 424080c45a75e3354d6bd98d381442c223e5bf27 (patch) | |
| tree | 2ce909090c7a9086fb9e3b25f97d70e7c701f5b0 /tests/test_framework/phpbb_functional_test_case.php | |
| parent | 4d14bdbf1307e020533dbe816a0754b049fe1657 (diff) | |
| parent | b17d15276f87073f22fe861f7c04edcb3138e582 (diff) | |
| download | forums-424080c45a75e3354d6bd98d381442c223e5bf27.tar forums-424080c45a75e3354d6bd98d381442c223e5bf27.tar.gz forums-424080c45a75e3354d6bd98d381442c223e5bf27.tar.bz2 forums-424080c45a75e3354d6bd98d381442c223e5bf27.tar.xz forums-424080c45a75e3354d6bd98d381442c223e5bf27.zip | |
Merge pull request #1701 from EXreaction/ticket/11831
Update fabpot/goutte
Diffstat (limited to 'tests/test_framework/phpbb_functional_test_case.php')
| -rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 1ced462c76..00b31212b2 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -661,7 +661,7 @@ class phpbb_functional_test_case extends phpbb_test_case $hidden_fields = array( $crawler->filter('[type="hidden"]')->each(function ($node, $i) { - return array('name' => $node->getAttribute('name'), 'value' => $node->getAttribute('value')); + return array('name' => $node->attr('name'), 'value' => $node->attr('value')); }), ); |
