Remove an extra indent from most of media-new.php.

Built from https://develop.svn.wordpress.org/trunk@31328


git-svn-id: http://core.svn.wordpress.org/trunk@31309 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dion Hulse 2015-02-03 07:47:22 +00:00
parent e8f032c747
commit 121f83ab39
2 changed files with 65 additions and 62 deletions

View File

@ -31,11 +31,13 @@ $ID = isset($ID) ? (int) $ID : 0;
$post_id = isset($post_id)? (int) $post_id : 0;
// Require an ID for the edit screen.
if ( isset($action) && $action == 'edit' && !$ID )
if ( isset($action) && $action == 'edit' && !$ID ) {
wp_die( __( 'Cheatin’ uh?' ), 403 );
}
if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post' , $_REQUEST['post_id'] ) )
if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post' , $_REQUEST['post_id'] ) ) {
wp_die( __( 'Cheatin’ uh?' ), 403 );
}
// Upload type: image, video, file, ..?
if ( isset($_GET['type']) ) {
@ -98,3 +100,4 @@ if ( isset($action) && $action == 'edit' && !$ID )
*/
do_action( "media_upload_$tab" );
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-alpha-31327';
$wp_version = '4.2-alpha-31328';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.