Don't label the form on media-new.php an upload form to avoid esoteric breakage. In past lives, the form has been more complicated than the standard .wp-upload-form use case, with submit buttons that are not just for the uploader, which means we really can't disable them here.
Reverts part of [22663]. see #20855. git-svn-id: http://core.svn.wordpress.org/trunk@22880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f940c40302
commit
6074924272
|
@ -59,7 +59,7 @@ get_current_screen()->set_help_sidebar(
|
|||
|
||||
require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
|
||||
$form_class = 'media-upload-form wp-upload-form type-form validate';
|
||||
$form_class = 'media-upload-form type-form validate';
|
||||
|
||||
if ( get_user_setting('uploader') || isset( $_GET['browser-uploader'] ) )
|
||||
$form_class .= ' html-uploader';
|
||||
|
|
Loading…
Reference in New Issue