1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 18:26:32 +02:00

[ticket/13821] Remove HTML from PHP files and deduplicate lang variable

PHPBB3-13821
This commit is contained in:
Marc Alexander
2022-01-22 23:50:33 +01:00
parent 9f09dec049
commit 97356d9879
8 changed files with 13 additions and 14 deletions

View File

@@ -532,7 +532,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
self::assertContainsLang('POST_DELETED', $crawler->text());
$crawler = self::request('GET', "viewtopic.php?t={$this->data['topics']['Feeds #1 - Topic #2']}&sid={$this->sid}");
self::assertStringContainsString($this->lang('POST_DISPLAY', '', ''), $crawler->text());
self::assertStringContainsString($this->lang('POST_DISPLAY'), $crawler->text());
}
public function test_feeds_softdeleted_post_admin()