1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/11711] Improve coding and comments of character check

PHPBB3-11711
This commit is contained in:
Marc Alexander
2014-06-10 15:51:25 +02:00
parent 65884bf2bd
commit 5ee7f20f4e
4 changed files with 16 additions and 11 deletions

View File

@@ -996,16 +996,19 @@ class phpbb_functional_test_case extends phpbb_test_case
// Instead, I send it as a request with the submit button "post" set to true.
$crawler = self::request('POST', $posting_url, $form_data);
if ($expected !== '' && isset($this->lang[$expected]))
if ($expected !== '')
{
$this->assertContainsLang($expected, $crawler->filter('html')->text());
return null;
}
else if ($expected !== '')
{
$this->assertContains($expected, $crawler->filter('html')->text());
if (isset($this->lang[$expected]))
{
$this->assertContainsLang($expected, $crawler->filter('html')->text());
}
else
{
$this->assertContains($expected, $crawler->filter('html')->text());
}
return null;
}
$url = $crawler->selectLink($form_data['subject'])->link()->getUri();
return array(