Changeset 20944 for trunk/wp-includes/formatting.php
- Timestamp:
- 05/27/2012 04:25:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r20859 r20944 2144 2144 $original_text = $text; 2145 2145 $text = wp_strip_all_tags( $text ); 2146 /* translators: If your word count is based on single characters (East Asian characters), 2147 enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ 2146 /* translators: If your word count is based on single characters (East Asian characters), 2147 enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ 2148 2148 if ( 'characters' == _x( 'words', 'word count: words or characters?' ) && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) { 2149 2149 $text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' );
Note: See TracChangeset
for help on using the changeset viewer.