Skip to content

Commit

Permalink
Removed strtolower() on bucket names - however bucket names should on…
Browse files Browse the repository at this point in the history
…ly contain lower-case characters.
  • Loading branch information
tpyo committed Apr 12, 2011
1 parent a3041a5 commit 047a92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S3.php
Expand Up @@ -1433,7 +1433,7 @@ function __construct($verb, $bucket = '', $uri = '', $endpoint = 's3.amazonaws.c
{
$this->endpoint = $endpoint;
$this->verb = $verb;
$this->bucket = strtolower($bucket);
$this->bucket = $bucket;
$this->uri = $uri !== '' ? '/'.str_replace('%2F', '/', rawurlencode($uri)) : '/';

if ($this->bucket !== '')
Expand Down

0 comments on commit 047a92d

Please sign in to comment.