From 8cfe2ec839c3ae075d68956e5f32a2f78b84b69e Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Mon, 26 Jan 2015 14:11:41 -0500 Subject: [PATCH] Fix capitalization of Amazon cloud storage config section --- airtime_mvc/application/cloud_storage/ProxyStorageBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/cloud_storage/ProxyStorageBackend.php b/airtime_mvc/application/cloud_storage/ProxyStorageBackend.php index b657d886b..bae3808d9 100644 --- a/airtime_mvc/application/cloud_storage/ProxyStorageBackend.php +++ b/airtime_mvc/application/cloud_storage/ProxyStorageBackend.php @@ -24,7 +24,7 @@ class ProxyStorageBackend extends StorageBackend //The storage backend in the airtime.conf directly corresponds to //the name of the class that implements it (eg. Amazon_S3), so we //can easily create the right backend object dynamically: - if ($storageBackend == "Amazon_S3") { + if ($storageBackend == "amazon_S3") { $this->storageBackend = new Amazon_S3StorageBackend($CC_CONFIG["Amazon_S3"]); } else if ($storageBackend == "file") { $this->storageBackend = new FileStorageBackend();