Changeset 26122
- Timestamp:
- 11/13/2013 03:55:33 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r26094 r26122 3340 3340 function capital_P_dangit( $text ) { 3341 3341 // Simple replacement for titles 3342 if ( 'the_title' === current_filter() ) 3342 $current_filter = current_filter(); 3343 if ( 'the_title' === $current_filter || 'wp_title' === $current_filter ) 3343 3344 return str_replace( 'Wordpress', 'WordPress', $text ); 3344 3345 // Still here? Use the more judicious replacement
Note: See TracChangeset
for help on using the changeset viewer.