Changeset 15378 for branches/3.0/wp-includes/formatting.php
- Timestamp:
- 07/08/2010 07:43:04 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/wp-includes/formatting.php
r15227 r15378 2826 2826 * @since 3.0.0 2827 2827 */ 2828 2828 2829 function capital_P_dangit( $text ) { 2829 return str_replace( 'Wordpress', 'WordPress', $text ); 2830 // Simple replacement for titles 2831 if ( 'the_title' === current_filter() ) 2832 return str_replace( 'Wordpress', 'WordPress', $text ); 2833 // Still here? Use the more judicious replacement 2834 static $dblq = false; 2835 if ( false === $dblq ) 2836 $dblq = _x('“', 'opening curly quote'); 2837 return str_replace( 2838 array( ' Wordpress', '‘Wordpress', $dblq . 'Wordpress', '>Wordpress', '(Wordpress' ), 2839 array( ' WordPress', '‘WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ), 2840 $text ); 2841 2830 2842 } 2831 2843
Note: See TracChangeset
for help on using the changeset viewer.