SAAS-501: Re-jig cloud_storage.conf

This commit is contained in:
drigato 2014-11-27 15:50:40 -05:00
parent 8601452c71
commit 92feacd46f
2 changed files with 7 additions and 5 deletions

View file

@ -26,9 +26,9 @@ class Amazon_S3
{
$CC_CONFIG = Config::getConfig();
$this->setBucket($CC_CONFIG['cloud_storage']['bucket']);
$this->setAccessKey($CC_CONFIG['cloud_storage']['api_key']);
$this->setSecretKey($CC_CONFIG['cloud_storage']['api_key_secret']);
$this->setBucket($CC_CONFIG['storage_backend']['bucket']);
$this->setAccessKey($CC_CONFIG['storage_backend']['api_key']);
$this->setSecretKey($CC_CONFIG['storage_backend']['api_key_secret']);
$this->zendServiceAmazonS3 = new Zend_Service_Amazon_S3(
$this->getAccessKey(),