diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 23:01:10 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 23:01:10 +0200 |
commit | 561cbb2de69a31934c22fc28332b5a14b6fcfc68 (patch) | |
tree | 502f17c451cd4af82ebc9fe797d34d662b1831ae /apps/files_external | |
parent | e73b817a38a824b3119136ea110eda4be15b99d5 (diff) | |
download | nextcloud-server-561cbb2de69a31934c22fc28332b5a14b6fcfc68.tar.gz nextcloud-server-561cbb2de69a31934c22fc28332b5a14b6fcfc68.zip |
NoSpaceAfterComma II
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/webdav.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 890e66d742e..74e468a2838 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -225,7 +225,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ - $response=$this->client->request('MOVE',$path1,null, array('Destination'=>$path2)); + $response=$this->client->request('MOVE', $path1, null, array('Destination'=>$path2)); return true; }catch(Exception $e) { echo $e; @@ -239,7 +239,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ - $response=$this->client->request('COPY',$path1,null, array('Destination'=>$path2)); + $response=$this->client->request('COPY', $path1, null, array('Destination'=>$path2)); return true; }catch(Exception $e) { echo $e; |