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/upload.php

    r31619 r31624  
    226226if ( ! empty( $_GET['attached'] ) && $attached = absint( $_GET['attached'] ) ) {
    227227    $message = sprintf( _n('Reattached %d attachment.', 'Reattached %d attachments.', $attached), $attached );
    228     $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detached', 'attached' ), $_SERVER['REQUEST_URI'] );
    229 }
    230 
    231 if ( ! empty( $_GET['detached'] ) && $detached = absint( $_GET['detached'] ) ) {
     228    $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach', 'attached' ), $_SERVER['REQUEST_URI'] );
     229}
     230
     231if ( ! empty( $_GET['detach'] ) && $detached = absint( $_GET['detach'] ) ) {
    232232    $message = sprintf( _n( 'Detached %d attachment.', 'Detached %d attachments.', $detached ), $detached );
    233     $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detached', 'attached' ), $_SERVER['REQUEST_URI'] );
     233    $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach', 'attached' ), $_SERVER['REQUEST_URI'] );
    234234}
    235235
Note: See TracChangeset for help on using the changeset viewer.