From 8f59ec0861999f23d5a01332264e231ea9022e9f Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Mon, 26 Jan 2015 14:18:59 -0500 Subject: [PATCH] ProxyStorageBackend::getFilePrefix() bugfix --- 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 bae3808d9..7843f9868 100644 --- a/airtime_mvc/application/cloud_storage/ProxyStorageBackend.php +++ b/airtime_mvc/application/cloud_storage/ProxyStorageBackend.php @@ -60,6 +60,6 @@ class ProxyStorageBackend extends StorageBackend public function getFilePrefix() { - $this->storageBackend->getFilePrefix(); + return $this->storageBackend->getFilePrefix(); } }