Make WordPress Core


Ignore:
Timestamp:
03/05/2015 03:58:02 PM (10 years ago)
Author:
wonderboymusic
Message:

detached affects the wp() call for the media list table, so switch our new $_GET key to detach.

See #6820.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/media.php

    r31619 r31624  
    30593059        if ( $referer = wp_get_referer() ) {
    30603060            if ( false !== strpos( $referer, 'upload.php' ) ) {
    3061                 $location = remove_query_arg( array( 'attached', 'detached' ), $referer );
     3061                $location = remove_query_arg( array( 'attached', 'detach' ), $referer );
    30623062            }
    30633063        }
    30643064
    3065         $key = 'attach' === $action ? 'attached' : 'detached';
     3065        $key = 'attach' === $action ? 'attached' : 'detach';
    30663066        $location = add_query_arg( array( $key => $result ), $location );
    30673067        wp_redirect( $location );
Note: See TracChangeset for help on using the changeset viewer.