Changeset 19257 for trunk/wp-admin/media-upload.php
- Timestamp:
- 11/11/2011 07:40:23 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/media-upload.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/media-upload.php
r19194 r19257 73 73 ); 74 74 75 require_once('./admin-header.php'); ?> 75 require_once('./admin-header.php'); 76 77 $form_class = 'media-upload-form type-form validate'; 78 79 if ( get_user_setting('uploader') ) 80 $form_class .= ' html-uploader'; 81 ?> 76 82 <div class="wrap"> 77 83 <?php screen_icon(); ?> 78 84 <h2><?php echo esc_html( $title ); ?></h2> 79 85 80 <form enctype="multipart/form-data" method="post" action="<?php echo admin_url('media-upload.php?inline=&upload-page-form='); ?>" class=" media-upload-form type-form validate" id="file-form">86 <form enctype="multipart/form-data" method="post" action="<?php echo admin_url('media-upload.php?inline=&upload-page-form='); ?>" class="<?php echo $form_class; ?>" id="file-form"> 81 87 82 88 <?php media_upload_form(); ?>
Note: See TracChangeset
for help on using the changeset viewer.