diff --git a/core/img/actions/add.png b/core/img/actions/add.png index 3c051e4d73..8ae17cfe11 100644 Binary files a/core/img/actions/add.png and b/core/img/actions/add.png differ diff --git a/core/img/actions/add.svg b/core/img/actions/add.svg index 250746e166..ecbab6f13a 100644 --- a/core/img/actions/add.svg +++ b/core/img/actions/add.svg @@ -1,6 +1,5 @@ - - - + + diff --git a/core/img/actions/close.png b/core/img/actions/close.png index 3389c66e03..ece33258e5 100644 Binary files a/core/img/actions/close.png and b/core/img/actions/close.png differ diff --git a/core/img/actions/close.svg b/core/img/actions/close.svg index ef564bfd48..4471dbc630 100644 --- a/core/img/actions/close.svg +++ b/core/img/actions/close.svg @@ -1,6 +1,3 @@ - - - - + diff --git a/core/img/actions/delete-hover.png b/core/img/actions/delete-hover.png index 48e6c089c9..3f8cb6eff9 100644 Binary files a/core/img/actions/delete-hover.png and b/core/img/actions/delete-hover.png differ diff --git a/core/img/actions/delete-hover.svg b/core/img/actions/delete-hover.svg index 9e5150359d..9583ec15b3 100644 --- a/core/img/actions/delete-hover.svg +++ b/core/img/actions/delete-hover.svg @@ -1,4 +1,4 @@ - + diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index 3389c66e03..e891b370cc 100644 Binary files a/core/img/actions/delete.png and b/core/img/actions/delete.png differ diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index ef564bfd48..f0a3cd4db8 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,6 +1,4 @@ - - - + diff --git a/core/img/actions/download.png b/core/img/actions/download.png index 0f71a5a776..1f8e1a4f7e 100644 Binary files a/core/img/actions/download.png and b/core/img/actions/download.png differ diff --git a/core/img/actions/download.svg b/core/img/actions/download.svg index a469c3b8a0..0d698bca8d 100644 --- a/core/img/actions/download.svg +++ b/core/img/actions/download.svg @@ -1,6 +1,5 @@ - - + diff --git a/core/img/actions/upload.png b/core/img/actions/upload.png index f6a0c4cfa8..a6969c23fa 100644 Binary files a/core/img/actions/upload.png and b/core/img/actions/upload.png differ diff --git a/core/img/actions/upload.svg b/core/img/actions/upload.svg index eae4515c72..80231797c9 100644 --- a/core/img/actions/upload.svg +++ b/core/img/actions/upload.svg @@ -1,6 +1,4 @@ - - - - + + diff --git a/core/img/actions/view-close.png b/core/img/actions/view-close.png index 8422b73346..c21f6ee30e 100644 Binary files a/core/img/actions/view-close.png and b/core/img/actions/view-close.png differ diff --git a/core/img/actions/view-close.svg b/core/img/actions/view-close.svg index 1d5b1a9f49..89d1fab88d 100644 --- a/core/img/actions/view-close.svg +++ b/core/img/actions/view-close.svg @@ -1,6 +1,3 @@ - - - - + diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 5a3872e66e..31ec8cfacf 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1110,8 +1110,9 @@ class View { if ($results) { foreach ($results as $result) { $internalPath = $result['path']; - $result['path'] = $relativeMountPoint . $result['path']; - $files[] = new FileInfo($mountPoint . $result['path'], $storage, $internalPath, $result); + $result['path'] = rtrim($relativeMountPoint . $result['path'], '/'); + $path = rtrim($mountPoint . $internalPath, '/'); + $files[] = new FileInfo($path, $storage, $internalPath, $result); } } }