Development

Changeset 3949

You must first sign up to be able to contribute.

Changeset 3949

Show
Ignore:
Timestamp:
05/07/07 16:12:01 (6 years ago)
Author:
Jonathan.Wage
Message:

sfDoctrineAmazonS3Plugin?: Added something to supresses pear errors.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfDoctrineAmazonS3Plugin/lib/BasesfAmazonS3.class.php

    r3716 r3949  
    1111 * Require PEAR package Crypt_HMAC  
    1212 */ 
     13ini_set('display_errors', 'off'); 
    1314require_once('Crypt/HMAC.php'); 
    1415  
     
    1718 */ 
    1819require_once('HTTP/Request.php'); 
    19   
     20ini_set('display_errors', 'on'); 
     21 
    2022/** 
    2123 * Base Symfony Amazon S3 Class 
     
    119121     */ 
    120122    public function __construct($accessKeyId = null, $secretKey  = null) 
    121     { 
     123    {    
    122124        // If params passed then setup class, otherwise throw exception 
    123125        if( $accessKeyId AND $secretKey )