Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-09-17 12:55:07 +0300
committerGitHub <noreply@github.com>2020-09-17 12:55:07 +0300
commitc9639f3956e4591f57718d3f2be512e4cdfd2bba (patch)
tree40f18c719e7356a0eee67a8fd0da30793fbbbec5 /apps/files_sharing/lib
parentd144a84df128407c41eb291db8d4f24e738a7034 (diff)
parent930c97a0ef0f01751f6f645e4506a216ef98c8a0 (diff)
Merge pull request #22898 from nextcloud/fix/16696/add-spaces-and-fix-variable-name
Fix variable name and add spaces around path in info log line
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/SharedStorage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/lib/SharedStorage.php b/apps/files_sharing/lib/SharedStorage.php
index d7c9a8081dd..901634c1e9f 100644
--- a/apps/files_sharing/lib/SharedStorage.php
+++ b/apps/files_sharing/lib/SharedStorage.php
@@ -307,9 +307,9 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
$this->init();
$isPartFile = pathinfo($path1, PATHINFO_EXTENSION) === 'part';
$targetExists = $this->file_exists($path2);
- $sameFodler = dirname($path1) === dirname($path2);
+ $sameFolder = dirname($path1) === dirname($path2);
- if ($targetExists || ($sameFodler && !$isPartFile)) {
+ if ($targetExists || ($sameFolder && !$isPartFile)) {
if (!$this->isUpdatable('')) {
return false;
}