Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Fix #325 #349

Merged
merged 3 commits into from
May 15, 2012
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix style warning.
  • Loading branch information
Abdelrahman Elogeel authored and Abdelrahman Elogeel committed May 15, 2012
commit 3f979a8899764ef8aca4390f37beb518294ec91e
4 changes: 2 additions & 2 deletions WindowsAzure/Blob/Internal/BlobRestProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ class BlobRestProxy extends ServiceRestProxy implements IBlob
*/
private function _getCopyBlobSourceName($containerName, $blobName, $options)
{
$sourceName = '/'. $this->getAccountName();
$sourceName .= '/'. $this->_createPath($containerName, $blobName);
$sourceName = '/' . $this->getAccountName();
$sourceName .= '/' . $this->_createPath($containerName, $blobName);

if (!is_null($options->getSourceSnapshot())) {
$sourceName .= '?snapshot=' . $options->getSourceSnapshot();
Expand Down