Changeset 42738
- Timestamp:
- 02/25/2018 04:35:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r42343 r42738 459 459 */ 460 460 function unescape_invalid_shortcodes( $content ) { 461 // Clean up entire string, avoids re-parsing HTML. 462 $trans = array( 463 '[' => '[', 464 ']' => ']', 465 ); 466 $content = strtr( $content, $trans ); 467 468 return $content; 461 // Clean up entire string, avoids re-parsing HTML. 462 $trans = array( 463 '[' => '[', 464 ']' => ']', 465 ); 466 467 $content = strtr( $content, $trans ); 468 469 return $content; 469 470 } 470 471
Note: See TracChangeset
for help on using the changeset viewer.