Make WordPress Core


Ignore:
Timestamp:
03/16/2018 08:18:48 PM (7 years ago)
Author:
joemcgill
Message:

Revert max-width styles on caption shortcodes.

This is a partial revert of [41724], so image captions include an
inline width style instead of max-width.

This returns the caption shortcode to the pre-4.9.0 behavior, while
retaining the extra unit test coverage added in [41724].

Fixes #43123. See #33981.

Merges [42837] to the 4.9 branch.

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/tests/phpunit/tests/shortcode.php

    r41724 r42838  
    478478            array(
    479479                '[caption caption="test" width="2"]<div>hello</div>[/caption]',
    480                 '<div style="max-width: 12px" class="wp-caption alignnone"><div>hello</div><p class="wp-caption-text">test</p></div>',
     480                '<div style="width: 12px" class="wp-caption alignnone"><div>hello</div><p class="wp-caption-text">test</p></div>',
    481481            ),
    482482            array(
Note: See TracChangeset for help on using the changeset viewer.