Make WordPress Core

Ticket #31255: 31255.patch

File 31255.patch, 634 bytes (added by iseulde, 11 years ago)
  • src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

     
    395395        // Remove spaces from empty paragraphs.
    396396        editor.on( 'BeforeSetContent', function( event ) {
    397397                if ( event.content ) {
    398                         event.content = event.content.replace( /<p>(?:&nbsp;|\u00a0|\uFEFF| )+<\/p>/gi, '<p></p>' );
     398                        event.content = event.content.replace( /<p>(?:&nbsp;|\u00a0|\uFEFF| )*<\/p>/gi, '<p><br /></p>' );
    399399                }
    400400        });
    401401