Make WordPress Core

Ticket #27320: 27320.5.diff

File 27320.5.diff, 1.1 KB (added by ericlewis, 10 years ago)
  • wp-includes/js/media-views.js

    diff --git a/wp-includes/js/media-views.js b/wp-includes/js/media-views.js
    index aff81b7..dd3b1de 100644
    a b  
    20252025                                previous = lastState && lastState.id,
    20262026                                frame = this;
    20272027
     2028                        // If no previous state, we can assume the user is editing an existing
     2029                        // playlist, don't add a cancel link.
     2030                        if ( ! previous )
     2031                                return;
    20282032                        view.set({
    20292033                                cancel: {
    20302034                                        text:     l10n.cancelGalleryTitle,
     
    20492053                                previous = lastState && lastState.id,
    20502054                                frame = this;
    20512055
     2056                        // If no previous state, we can assume the user is editing an existing
     2057                        // playlist, don't add a cancel link.
     2058                        if ( ! previous )
     2059                                return;
    20522060                        view.set({
    20532061                                cancel: {
    20542062                                        text:     l10n.cancelPlaylistTitle,
     
    20732081                                previous = lastState && lastState.id,
    20742082                                frame = this;
    20752083
     2084                        // If no previous state, we can assume the user is editing an existing
     2085                        // playlist, don't add a cancel link.
     2086                        if ( ! previous )
     2087                                return;
    20762088                        view.set({
    20772089                                cancel: {
    20782090                                        text:     l10n.cancelVideoPlaylistTitle,