diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-12-12 18:17:06 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-12-12 18:17:06 +0100 |
commit | 7dbd6abe8e3a6b041b028a531e13eb5dd66cdad2 (patch) | |
tree | a53825c6b67b02ceacfa17091b31b3a67e25f8ce /tests | |
parent | Merge branch '3.3.x' (diff) | |
parent | Merge branch '3.2.x' into 3.3.x (diff) | |
download | phpbb-7dbd6abe8e3a6b041b028a531e13eb5dd66cdad2.tar.gz phpbb-7dbd6abe8e3a6b041b028a531e13eb5dd66cdad2.tar.bz2 phpbb-7dbd6abe8e3a6b041b028a531e13eb5dd66cdad2.zip |
Merge branch '3.3.x'
Diffstat (limited to 'tests')
4 files changed, 37 insertions, 0 deletions
diff --git a/tests/text_processing/tickets_data/PHPBB3-16252.after.php b/tests/text_processing/tickets_data/PHPBB3-16252.after.php new file mode 100644 index 0000000000..c2f57c171e --- /dev/null +++ b/tests/text_processing/tickets_data/PHPBB3-16252.after.php @@ -0,0 +1,18 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +function after_assert_phpbb3_16252($vars) +{ + extract($vars); + $test->assertEmpty($parser->get_errors()); +} diff --git a/tests/text_processing/tickets_data/PHPBB3-16252.before.php b/tests/text_processing/tickets_data/PHPBB3-16252.before.php new file mode 100644 index 0000000000..94c59d9602 --- /dev/null +++ b/tests/text_processing/tickets_data/PHPBB3-16252.before.php @@ -0,0 +1,17 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +function before_assert_phpbb3_16252($vars) +{ + $vars['parser']->disable_bbcode('url'); +} diff --git a/tests/text_processing/tickets_data/PHPBB3-16252.html b/tests/text_processing/tickets_data/PHPBB3-16252.html new file mode 100644 index 0000000000..5b14ab0e7a --- /dev/null +++ b/tests/text_processing/tickets_data/PHPBB3-16252.html @@ -0,0 +1 @@ +http://localhost/
\ No newline at end of file diff --git a/tests/text_processing/tickets_data/PHPBB3-16252.txt b/tests/text_processing/tickets_data/PHPBB3-16252.txt new file mode 100644 index 0000000000..5b14ab0e7a --- /dev/null +++ b/tests/text_processing/tickets_data/PHPBB3-16252.txt @@ -0,0 +1 @@ +http://localhost/
\ No newline at end of file |