ZF-11437: Zend_Service_Amazon_S3: add hhtps support in constructor
Description
Zend_Service_Amazon_S3: add ssl support in constructor
Should not assume no secure. please add a 4th arg for enabling https
/** * Constructor * * @param string $accessKey * @param string $secretKey * @param string $region */ public function __construct($accessKey=null, $secretKey=null, $region=null) { parent::__construct($accessKey, $secretKey, $region);
$this->setEndpoint('<a rel="nofollow" href="http://'.self::S3_ENDPOINT">http://'.self::S3_ENDPOINT</a>);
}
Comments
No comments to display