Changeset 31624
- Timestamp:
- 03/05/2015 03:58:02 PM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r31619 r31624 3059 3059 if ( $referer = wp_get_referer() ) { 3060 3060 if ( false !== strpos( $referer, 'upload.php' ) ) { 3061 $location = remove_query_arg( array( 'attached', 'detach ed' ), $referer );3061 $location = remove_query_arg( array( 'attached', 'detach' ), $referer ); 3062 3062 } 3063 3063 } 3064 3064 3065 $key = 'attach' === $action ? 'attached' : 'detach ed';3065 $key = 'attach' === $action ? 'attached' : 'detach'; 3066 3066 $location = add_query_arg( array( $key => $result ), $location ); 3067 3067 wp_redirect( $location ); -
trunk/src/wp-admin/upload.php
r31619 r31624 226 226 if ( ! empty( $_GET['attached'] ) && $attached = absint( $_GET['attached'] ) ) { 227 227 $message = sprintf( _n('Reattached %d attachment.', 'Reattached %d attachments.', $attached), $attached ); 228 $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach ed', 'attached' ), $_SERVER['REQUEST_URI'] );229 } 230 231 if ( ! empty( $_GET['detach ed'] ) && $detached = absint( $_GET['detached'] ) ) {228 $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach', 'attached' ), $_SERVER['REQUEST_URI'] ); 229 } 230 231 if ( ! empty( $_GET['detach'] ) && $detached = absint( $_GET['detach'] ) ) { 232 232 $message = sprintf( _n( 'Detached %d attachment.', 'Detached %d attachments.', $detached ), $detached ); 233 $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach ed', 'attached' ), $_SERVER['REQUEST_URI'] );233 $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach', 'attached' ), $_SERVER['REQUEST_URI'] ); 234 234 } 235 235
Note: See TracChangeset
for help on using the changeset viewer.