diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-04-12 12:52:51 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-12 12:52:51 +0200 |
commit | 16df1c5188d5a312ef5db7db427961597fe56ebe (patch) | |
tree | d95646f164a789d9e6f1b354b9a6472acb72f53f /apps/files_sharing | |
parent | fdee771aca39f394c940edfcaa5a15826b078974 (diff) | |
download | nextcloud-server-16df1c5188d5a312ef5db7db427961597fe56ebe.tar.gz nextcloud-server-16df1c5188d5a312ef5db7db427961597fe56ebe.zip |
apps: Fix typos (found by codespell) (#23862)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/ajax/shareinfo.php | 8 | ||||
-rw-r--r-- | apps/files_sharing/js/share.js | 2 | ||||
-rw-r--r-- | apps/files_sharing/lib/external/manager.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/tests/cache.php | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/files_sharing/ajax/shareinfo.php b/apps/files_sharing/ajax/shareinfo.php index e531e84ebbc..e15e12fd287 100644 --- a/apps/files_sharing/ajax/shareinfo.php +++ b/apps/files_sharing/ajax/shareinfo.php @@ -71,12 +71,12 @@ function getChildInfo($dir, $view) { $children = $view->getDirectoryContent($dir->getPath()); $result = array(); foreach ($children as $child) { - $formated = \OCA\Files\Helper::formatFileInfo($child); + $formatted = \OCA\Files\Helper::formatFileInfo($child); if ($child->getType() === 'dir') { - $formated['children'] = getChildInfo($child, $view); + $formatted['children'] = getChildInfo($child, $view); } - $formated['mtime'] = $formated['mtime'] / 1000; - $result[] = $formated; + $formatted['mtime'] = $formatted['mtime'] / 1000; + $result[] = $formatted; } return $result; } diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 5bfc8e1d4a2..07ec5f766a1 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -38,7 +38,7 @@ var tr = oldCreateRow.apply(this, arguments); var sharePermissions = fileData.permissions; if (fileData.mountType && fileData.mountType === "external-root"){ - // for external storages we cant use the permissions of the mountpoint + // for external storages we can't use the permissions of the mountpoint // instead we show all permissions and only use the share permissions from the mountpoint to handle resharing sharePermissions = sharePermissions | (OC.PERMISSION_ALL & ~OC.PERMISSION_SHARE); } diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php index 71d6788cb52..7dc9f66f114 100644 --- a/apps/files_sharing/lib/external/manager.php +++ b/apps/files_sharing/lib/external/manager.php @@ -384,7 +384,7 @@ class Manager { } /** - * return a list of shares wich are accepted by the user + * return a list of shares which are accepted by the user * * @return array list of accepted server-to-server shares */ diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index c137ba0728d..fcc5a343a03 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -193,7 +193,7 @@ class Test_Files_Sharing_Cache extends TestCase { array('name' => 'shareddir', 'path' => ''), ) ), - array('%nonexistant%', + array('%nonexistent%', array( ) ), |