Changeset 3949
- Timestamp:
- 05/07/07 16:12:01 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDoctrineAmazonS3Plugin/lib/BasesfAmazonS3.class.php
r3716 r3949 11 11 * Require PEAR package Crypt_HMAC 12 12 */ 13 ini_set('display_errors', 'off'); 13 14 require_once('Crypt/HMAC.php'); 14 15 … … 17 18 */ 18 19 require_once('HTTP/Request.php'); 19 20 ini_set('display_errors', 'on'); 21 20 22 /** 21 23 * Base Symfony Amazon S3 Class … … 119 121 */ 120 122 public function __construct($accessKeyId = null, $secretKey = null) 121 { 123 { 122 124 // If params passed then setup class, otherwise throw exception 123 125 if( $accessKeyId AND $secretKey )