Changeset 28715
- Timestamp:
- 06/10/2014 01:45:28 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r28711 r28715 30 30 global $wp_cockneyreplace; 31 31 static $static_characters, $static_replacements, $dynamic_characters, $dynamic_replacements, 32 $default_no_texturize_tags, $default_no_texturize_shortcodes; 32 $default_no_texturize_tags, $default_no_texturize_shortcodes, $run_texturize = true; 33 34 if ( false === $run_texturize ) { 35 return $text; 36 } 33 37 34 38 // No need to set up these static variables more than once 35 39 if ( ! isset( $static_characters ) ) { 40 $run_texturize = apply_filters( 'run_wptexturize', $run_texturize ); 41 if ( false === $run_texturize ) { 42 return $text; 43 } 44 36 45 /* translators: opening curly double quote */ 37 46 $opening_quote = _x( '“', 'opening curly double quote' );
Note: See TracChangeset
for help on using the changeset viewer.