Make WordPress Core

Ticket #23176: 23176.diff

File 23176.diff, 477 bytes (added by kovshenin, 12 years ago)

Replace newlines with spaces before sending to the editor

  • wp-includes/js/media-editor.js

     
    1818                                if ( 'image' === props.type && ! props.alt ) {
    1919                                        props.alt = props.caption || props.title || '';
    2020                                        props.alt = props.alt.replace( /<\/?[^>]+>/g, '' );
     21                                        props.alt = props.alt.replace( /\r|\n|\r\n/g, ' ' );
    2122                                }
    2223
    2324                                return props;