diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-04-28 02:40:33 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-04-28 02:40:33 +0200 |
commit | 102b6c2df377759de8b17f3fe6fa7366fb7385dd (patch) | |
tree | b78efd32cccec3eb4d80ae124d8525ee48653139 /tests/text_processing | |
parent | 6870293a9e197236f5a669a814011edf5741c20b (diff) | |
download | forums-102b6c2df377759de8b17f3fe6fa7366fb7385dd.tar forums-102b6c2df377759de8b17f3fe6fa7366fb7385dd.tar.gz forums-102b6c2df377759de8b17f3fe6fa7366fb7385dd.tar.bz2 forums-102b6c2df377759de8b17f3fe6fa7366fb7385dd.tar.xz forums-102b6c2df377759de8b17f3fe6fa7366fb7385dd.zip |
[ticket/10922] Added support for body and subject in email BBCode
PHPBB3-10922
Diffstat (limited to 'tests/text_processing')
-rw-r--r-- | tests/text_processing/tickets_data/PHPBB3-10922.html | 4 | ||||
-rw-r--r-- | tests/text_processing/tickets_data/PHPBB3-10922.txt | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/tests/text_processing/tickets_data/PHPBB3-10922.html b/tests/text_processing/tickets_data/PHPBB3-10922.html index cdf8316df0..0c74809377 100644 --- a/tests/text_processing/tickets_data/PHPBB3-10922.html +++ b/tests/text_processing/tickets_data/PHPBB3-10922.html @@ -1 +1,3 @@ -<a href="mailto:user@example.org">user@example.org</a><a href="mailto:user@example.org">...</a>
\ No newline at end of file +<a href="mailto:user@example.org">user@example.org</a><br> +<a href="mailto:user@example.org">...</a><br> +<a href="mailto:user@example.org?subject=Hello&body=Sent+from+phpBB">user@example.org</a><br> diff --git a/tests/text_processing/tickets_data/PHPBB3-10922.txt b/tests/text_processing/tickets_data/PHPBB3-10922.txt index 348f8a1541..a8f09c40f2 100644 --- a/tests/text_processing/tickets_data/PHPBB3-10922.txt +++ b/tests/text_processing/tickets_data/PHPBB3-10922.txt @@ -1 +1,3 @@ -[email]user@example.org[/email][email=user@example.org]...[/email]
\ No newline at end of file +[email]user@example.org[/email] +[email=user@example.org]...[/email] +[email subject="Hello" body="Sent from phpBB"]user@example.org[/email] |