From 2061fa8a5a28de5710551791ac36918fcd331a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donovan=20Sch=C3=B6nknecht?= Date: Wed, 26 Jun 2013 15:09:24 +0200 Subject: [PATCH] Create headers array for response --- S3.php | 1 + 1 file changed, 1 insertion(+) diff --git a/S3.php b/S3.php index c0eaffa4..70e305e4 100644 --- a/S3.php +++ b/S3.php @@ -1999,6 +1999,7 @@ function __construct($verb, $bucket = '', $uri = '', $endpoint = 's3.amazonaws.c $this->response = new STDClass; $this->response->error = false; $this->response->body = null; + $this->response->headers = array(); }