Changeset 49193 for trunk/src/wp-includes/shortcodes.php
- Timestamp:
- 10/18/2020 05:25:10 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/shortcodes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r49092 r49193 253 253 $tagnames = array_keys( $shortcode_tags ); 254 254 } 255 $tagregexp = join( '|', array_map( 'preg_quote', $tagnames ) );255 $tagregexp = implode( '|', array_map( 'preg_quote', $tagnames ) ); 256 256 257 257 // WARNING! Do not change this regex without changing do_shortcode_tag() and strip_shortcode_tag().
Note: See TracChangeset
for help on using the changeset viewer.