X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/fa11948979fd6a4ea5705dc613b239699a459db3..607b7e02d77e7326161e8ec15639052d2040f745:/wp-admin/media.php?ds=inline diff --git a/wp-admin/media.php b/wp-admin/media.php index c9f03483..88fa51ed 100644 --- a/wp-admin/media.php +++ b/wp-admin/media.php @@ -14,13 +14,13 @@ $submenu_file = 'upload.php'; wp_reset_vars(array('action')); -switch( $action ) : +switch ( $action ) { case 'editattachment' : $attachment_id = (int) $_POST['attachment_id']; check_admin_referer('media-form'); if ( !current_user_can('edit_post', $attachment_id) ) - wp_die ( __('You are not allowed to edit this attachment.') ); + wp_die ( __('Sorry, you are not allowed to edit this attachment.') ); $errors = media_upload_form_handler(); @@ -40,7 +40,7 @@ case 'editattachment' : exit; } - // no break + // No break. case 'edit' : $title = __('Edit Media'); @@ -54,7 +54,7 @@ case 'edit' : $att_id = (int) $_GET['attachment_id']; if ( !current_user_can('edit_post', $att_id) ) - wp_die ( __('You are not allowed to edit this attachment.') ); + wp_die ( __('Sorry, you are not allowed to edit this attachment.') ); $att = get_post($att_id); @@ -80,8 +80,8 @@ case 'edit' : get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . - '

' . __('Documentation on Edit Media') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Documentation on Edit Media') . '

' . + '

' . __('Support Forums') . '

' ); require( ABSPATH . 'wp-admin/admin-header.php' ); @@ -90,12 +90,12 @@ case 'edit' : $message = ''; $class = ''; if ( isset($_GET['message']) ) { - switch ( $_GET['message'] ) : - case 'updated' : - $message = __('Media attachment updated.'); - $class = 'updated'; - break; - endswitch; + switch ( $_GET['message'] ) { + case 'updated' : + $message = __('Media file updated.'); + $class = 'updated'; + break; + } } if ( $message ) echo "

$message

\n"; @@ -103,22 +103,21 @@ case 'edit' : ?>
- -

+

- + -

+ -
+

-
+
false, 'send' => false, 'delete' => false, 'show_title' => false, 'errors' => !empty($errors[$att_id]) ? $errors[$att_id] : null ) ); ?>
@@ -144,4 +143,4 @@ default: wp_redirect( admin_url('upload.php') ); exit; -endswitch; +}