Przeglądaj źródła

fix ZF-6549

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15429 44c647ce-9c0f-0410-b52a-842ac1e357ba
stas 16 lat temu
rodzic
commit
2c105c3ef6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      library/Zend/Service/Amazon/S3/Stream.php

+ 1 - 1
library/Zend/Service/Amazon/S3/Stream.php

@@ -113,7 +113,7 @@ class Zend_Service_Amazon_S3_Stream
     {
         $url = parse_url($path);
         if ($url['host']) {
-            return $url['path'] ? $url['host'].'/'.$url['path'] : $url['host'];
+            return $url['path'] ? $url['host'].$url['path'] : $url['host'];
         }
 
         return '';