Make WordPress Core

Ticket #36735: 36735.2.patch

File 36735.2.patch, 920 bytes (added by joemcgill, 8 years ago)
  • src/wp-includes/js/media-editor.js

    diff --git src/wp-includes/js/media-editor.js src/wp-includes/js/media-editor.js
    index 5bf5bd3..870439c 100644
     
    5555                        fallbacks = function( props ) {
    5656                                // Generate alt fallbacks and strip tags.
    5757                                if ( 'image' === props.type && ! props.alt ) {
    58                                         props.alt = props.caption || props.title || '';
     58                                        if ( props.caption ) {
     59                                                props.alt = props.caption;
     60                                        } else if ( props.title !== props.url ) {
     61                                                props.alt = props.title;
     62                                        } else {
     63                                                props.alt = '';
     64                                        }
     65
    5966                                        props.alt = props.alt.replace( /<\/?[^>]+>/g, '' );
    6067                                        props.alt = props.alt.replace( /[\r\n]+/g, ' ' );
    6168                                }
     
    894901                                                title:   embed.url,
    895902                                                linkUrl: '',
    896903                                                align:   'none',
    897                                                 link:    'none'
     904                                                link:    'none',
     905                                                type:    'image'
    898906                                        });
    899907
    900908                                        if ( 'none' === embed.link ) {