Unverified Commit b26bd1fe authored by Joe Hoyle's avatar Joe Hoyle Committed by GitHub
Browse files

Merge pull request #226 from humanmade/fix-copying-large-files

Fix copying large files causes memory limit overflow
parents 19f4b009 e2987c06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ class S3_Uploads_Stream_Wrapper
			$this->body->seek(0);
		}
		$params = $this->getOptions(true);
		$params['Body'] = (string) $this->body;
		$params['Body'] = $this->body;

		// Attempt to guess the ContentType of the upload based on the
		// file extension of the key. Added by Joe Hoyle
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
Plugin Name: S3 Uploads
Description: Store uploads in S3
Author: Human Made Limited
Version: 2.0.0-beta2
Version: 2.0.0-beta3
Author URI: http://hmn.md
*/