Skip to content

Commit

Permalink
Merge pull request #238 from wouterb/aws-s3-v3-prefix
Browse files Browse the repository at this point in the history
added aws s3 v3 optional_prefix parameter
  • Loading branch information
helios-ag committed Apr 26, 2016
2 parents 96751f2 + 394139f commit cd32cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/ElFinderConfigurationReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private function configureFlysystem($opt, $adapter, $serviceName)
'region' => $opt['aws_s3_v3']['region'],
'version' => $opt['aws_s3_v3']['version'],
));
$filesystem = new Filesystem(new AwsS3v3($client, $opt['aws_s3_v3']['bucket_name']));
$filesystem = new Filesystem(new AwsS3v3($client, $opt['aws_s3_v3']['bucket_name'], $opt['aws_s3_v3']['optional_prefix']));
break;
case 'copy_com':
$client = new API(
Expand Down

0 comments on commit cd32cd9

Please sign in to comment.