### Eclipse Workspace Patch 1.0
#P wordpress-trunk bare
Index: wp-admin/includes/file.php
===================================================================
--- wp-admin/includes/file.php	(revision 17523)
+++ wp-admin/includes/file.php	(working copy)
@@ -563,7 +563,7 @@
 		return new WP_Error('fs_unavailable', __('Could not access filesystem.'));
 
 	// Unzip can use a lot of memory, but not this much hopefully
-	@ini_set('memory_limit', '256M');
+	@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
 
 	$needed_dirs = array();
 	$to = trailingslashit($to);
Index: wp-includes/media.php
===================================================================
--- wp-includes/media.php	(revision 17523)
+++ wp-includes/media.php	(working copy)
@@ -250,7 +250,7 @@
 		return __('The GD image library is not installed.');
 
 	// Set artificially high because GD uses uncompressed images in memory
-	@ini_set('memory_limit', '256M');
+	@ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) );
 	$image = imagecreatefromstring( file_get_contents( $file ) );
 
 	if ( !is_resource( $image ) )
Index: wp-admin/includes/image-edit.php
===================================================================
--- wp-admin/includes/image-edit.php	(revision 17523)
+++ wp-admin/includes/image-edit.php	(working copy)
@@ -391,7 +391,7 @@
 
 function stream_preview_image($post_id) {
 	$post = get_post($post_id);
-	@ini_set('memory_limit', '256M');
+	@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
 	$img = load_image_to_edit( $post_id, $post->post_mime_type, array(400, 400) );
 
 	if ( !is_resource($img) )
@@ -496,7 +496,7 @@
 	$return = new stdClass;
 	$success = $delete = $scaled = $nocrop = false;
 	$post = get_post($post_id);
-	@ini_set('memory_limit', '256M');
+	@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', '256M' ) );
 	$img = load_image_to_edit($post_id, $post->post_mime_type);
 
 	if ( !is_resource($img) ) {
