Ticket #14219: camelcase.patch
File camelcase.patch, 370 bytes (added by , 15 years ago) |
---|
-
formatting.php
2826 2826 * @since 3.0.0 2827 2827 */ 2828 2828 function capital_P_dangit( $text ) { 2829 return str_replace( 'Wordpress', 'WordPress', $text);2829 return preg_replace('/word\s*press/i', 'WordPress', $text); 2830 2830 } 2831 2831 2832 2832 ?>