Changeset 31965
- Timestamp:
- 04/01/2015 07:08:31 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r31938 r31965 236 236 . $comment_regex // Find end of comment. 237 237 . '|' 238 . '[^>] +>' // Find end of element.238 . '[^>]*>' // Find end of element. 239 239 . ')' 240 240 . '|' -
trunk/tests/phpunit/tests/formatting/WPTexturize.php
r31249 r31965 1393 1393 '[Let\'s get crazy<input>[caption code="<a href=\'?a[]=100\'>hello</a>"]</input>world]', // caption shortcode is invalid here because it contains [] chars. 1394 1394 '[Let’s get crazy<input>[caption code=”<a href=\'?a[]=100\'>hello</a>“]</input>world]', 1395 ), 1396 array( 1397 '<> ... <>', 1398 '<> … <>', 1399 ), 1400 array( 1401 '<> ... <> ... >', 1402 '<> … <> … >', 1403 ), 1404 array( 1405 '<> ... < ... > ... <>', 1406 '<> … < ... > … <>', 1395 1407 ), 1396 1408 );
Note: See TracChangeset
for help on using the changeset viewer.