Ticket #20369: 20369.minor-typo-fix.patch
File 20369.minor-typo-fix.patch, 531 bytes (added by , 13 years ago) |
---|
-
wp-admin/includes/media.php
171 171 $s = preg_replace( '/[\r\n\t]+/', ' ', $str[0] ); 172 172 // look for single quotes inside html attributes (for example in title) 173 173 $s = preg_replace_callback( '/="[^"]+"/', '_cleanup_image_add_caption2', $s ); 174 return str_replace( 174 return str_replace( '"', "'", $s ); 175 175 } 176 176 177 177 return '';