diff options
author | v12mike <v12mike@ingenious.co.nz> | 2019-09-08 14:23:09 -0400 |
---|---|---|
committer | v12mike <v12mike@ingenious.co.nz> | 2019-09-08 14:23:09 -0400 |
commit | 88d94a7c1992e43dd8300ba41352e36d3d2c6381 (patch) | |
tree | ddbad9bb20f05e230dce74c244716c9e2eb866d1 /tests/functional/posting_test.php | |
parent | c31216e4930645df808577dea017642f0495989f (diff) | |
download | forums-88d94a7c1992e43dd8300ba41352e36d3d2c6381.tar forums-88d94a7c1992e43dd8300ba41352e36d3d2c6381.tar.gz forums-88d94a7c1992e43dd8300ba41352e36d3d2c6381.tar.bz2 forums-88d94a7c1992e43dd8300ba41352e36d3d2c6381.tar.xz forums-88d94a7c1992e43dd8300ba41352e36d3d2c6381.zip |
[ticket/16150] Make post subject links reliable
Change links that were relative to topic page into absolute links.
Update related test cases.
PHPBB3-16150
Diffstat (limited to 'tests/functional/posting_test.php')
-rw-r--r-- | tests/functional/posting_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/posting_test.php b/tests/functional/posting_test.php index 764376a945..7150f20a9d 100644 --- a/tests/functional/posting_test.php +++ b/tests/functional/posting_test.php @@ -29,7 +29,7 @@ class phpbb_functional_posting_test extends phpbb_functional_test_case // Test creating a reply with bbcode $post2 = $this->create_post(2, $post['topic_id'], 'Re: Test Topic 1', 'This is a test [b]post[/b] posted by the testing framework.'); - $crawler = self::request('GET', "viewtopic.php?t={$post2['topic_id']}&sid={$this->sid}"); + $crawler = self::request('GET', "viewtopic.php?p={$post2['post_id']}&sid={$this->sid}"); $this->assertContains('This is a test post posted by the testing framework.', $crawler->filter('html')->text()); // Test quoting a message @@ -161,7 +161,7 @@ class phpbb_functional_posting_test extends phpbb_functional_test_case { $this->set_quote_depth($quote_depth); - $post = $this->create_post(2, $topic['topic_id'], 'Re: Test Topic 1', $text); + $post = $this->create_post(2, $topic['topic_id'], "Re: Test Topic 1#$quote_depth", $text); $url = "viewtopic.php?p={$post['post_id']}&sid={$this->sid}"; $crawler = self::request('GET', $url); |