diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-20 23:36:45 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-20 23:36:45 +0100 |
commit | ed6b8f84ad07a8aaa88124bb29e26f9042c3f552 (patch) | |
tree | a84d86f21926c60724813f1a376e6bb26701e9c3 /tests/functional | |
parent | a5fae1b1f09358f8a24ff32fc5192395cd314244 (diff) | |
download | forums-ed6b8f84ad07a8aaa88124bb29e26f9042c3f552.tar forums-ed6b8f84ad07a8aaa88124bb29e26f9042c3f552.tar.gz forums-ed6b8f84ad07a8aaa88124bb29e26f9042c3f552.tar.bz2 forums-ed6b8f84ad07a8aaa88124bb29e26f9042c3f552.tar.xz forums-ed6b8f84ad07a8aaa88124bb29e26f9042c3f552.zip |
[ticket/13530] Fix undefined variables
PHPBB3-13530
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/prune_shadow_topic_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/prune_shadow_topic_test.php b/tests/functional/prune_shadow_topic_test.php index f00303060d..c014119b98 100644 --- a/tests/functional/prune_shadow_topic_test.php +++ b/tests/functional/prune_shadow_topic_test.php @@ -62,7 +62,7 @@ class phpbb_functional_prune_shadow_topic_test extends phpbb_functional_test_cas $crawler = self::request('GET', "viewtopic.php?t={$this->post['topic_id']}&sid={$this->sid}"); $this->assertContains('Prune Shadow #1', $crawler->filter('html')->text()); - $this->data['topics']['Prune Shadow #1'] = (int) $post['topic_id']; + $this->data['topics']['Prune Shadow #1'] = (int) $this->post['topic_id']; $this->data['posts']['Prune Shadow #1'] = (int) $this->get_parameter_from_link($crawler->filter('.post')->selectLink($this->lang('POST', '', ''))->link()->getUri(), 'p'); $this->assert_forum_details($this->data['forums']['Prune Shadow'], array( |