diff options
author | Matt Friedman <maf675@gmail.com> | 2015-08-26 10:05:14 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-08-26 14:08:59 -0700 |
commit | e19d446881ba98d8a1082732585da3f6d4bd262f (patch) | |
tree | 3fc3b563391b63d1b9e9025245ceff0fcec25ca2 /tests/text_processing | |
parent | 0a5f7d2e5114f66b373ff25cf29552a29b1dda50 (diff) | |
download | forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar.gz forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar.bz2 forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar.xz forums-e19d446881ba98d8a1082732585da3f6d4bd262f.zip |
[ticket/14128] Fix img bbcode regression, lost postimage class
PHPBB3-14128
Diffstat (limited to 'tests/text_processing')
-rw-r--r-- | tests/text_processing/generate_text_for_display_test.php | 2 | ||||
-rw-r--r-- | tests/text_processing/tickets_data/PHPBB3-12195.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/text_processing/generate_text_for_display_test.php b/tests/text_processing/generate_text_for_display_test.php index f2b0d6c78b..dba3713447 100644 --- a/tests/text_processing/generate_text_for_display_test.php +++ b/tests/text_processing/generate_text_for_display_test.php @@ -173,7 +173,7 @@ class phpbb_text_processing_generate_text_for_display_test extends phpbb_test_ca ), array( '<r><IMG src="http://localhost/mrgreen.gif"><s>[img]</s><URL url="http://localhost/mrgreen.gif">http://localhost/mrgreen.gif</URL><e>[/img]</e></IMG></r>', - '<img src="http://localhost/mrgreen.gif" alt="Image">' + '<img src="http://localhost/mrgreen.gif" class="postimage" alt="Image">' ), array( '<r><IMG src="http://localhost/mrgreen.gif"><s>[img]</s><URL url="http://localhost/mrgreen.gif">http://localhost/mrgreen.gif</URL><e>[/img]</e></IMG></r>', diff --git a/tests/text_processing/tickets_data/PHPBB3-12195.html b/tests/text_processing/tickets_data/PHPBB3-12195.html index d8e0f8d523..c286c0fee9 100644 --- a/tests/text_processing/tickets_data/PHPBB3-12195.html +++ b/tests/text_processing/tickets_data/PHPBB3-12195.html @@ -1 +1 @@ -<a href="//example.org/" class="postlink"><img src="//example.org/img.png" alt="Image"></a>
\ No newline at end of file +<a href="//example.org/" class="postlink"><img src="//example.org/img.png" class="postimage" alt="Image"></a>
\ No newline at end of file |