Make WordPress Core

Ticket #34831: 34831.2.diff

File 34831.2.diff, 532 bytes (added by mdawaffe, 9 years ago)

TobiasBg's patch

  • wp-includes/js/wp-embed.js

     
    2222                        return;
    2323                }
    2424
     25                if ( /[^a-zA-Z0-9]/.test( data.secret ) ) {
     26                        return;
     27                }
     28
    2529                var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
    2630                        blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
    2731                        i, source, height, sourceURL, targetURL;