Index: wp-admin/includes/media.php
===================================================================
--- wp-admin/includes/media.php	(revision 19371)
+++ wp-admin/includes/media.php	(working copy)
@@ -1378,17 +1378,8 @@
 <?php do_action('post-html-upload-ui'); ?>
 </div>
 
-<p><?php printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($sizes[$u]) );
-if ( ($is_IE || $is_opera) && $max_upload_size > 100 * 1024 * 1024 )
-		echo ' <span class="big-file-warning">' . __('Your browser has some limitations uploading large files with the multi-file uploader. Please use the browser uploader for files over 100MB.') . '</span></p><p>';
+<?php do_action('post-upload-ui'); }
 
-echo ' ' . __('After a file has been uploaded, you can add titles and descriptions.');
-?></p>
-
-<?php
-	do_action('post-upload-ui');
-}
-
 /**
  * {@internal Missing Short Description}}
  *
@@ -2055,6 +2046,22 @@
 add_action('post-html-upload-ui', 'media_upload_html_bypass');
 
 /**
+ * Display maximum upload file size
+ *
+ * @since 3.3
+ */
+function media_upload_max_file_size_message() {
+	?>
+	<p class="max-file-size"><?php printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($sizes[$u]) );
+	if ( ($is_IE || $is_opera) && $max_upload_size > 100 * 1024 * 1024 )
+		echo ' <span class="big-file-warning">' . __('Your browser has some limitations uploading large files with the multi-file uploader. Please use the browser uploader for files over 100MB.') . '</span></p><p class="post-upload-options">';
+	echo ' ' . __('After a file has been uploaded, you can add titles and descriptions.'); ?>
+	</p>
+	<?php
+}
+add_action('post-upload-ui', 'media_upload_max_file_size_message');
+
+/**
  * {@internal Missing Short Description}}
  *
  * @since 2.6.0
