Skip to content
Snippets Groups Projects
Commit 6fe13fdb authored by Ingo Schmitt's avatar Ingo Schmitt Committed by Steffen Ritter
Browse files

[BUGFIX] Do not show exeption when folder is not accesible

When a storage folder is not accessible for the user a exception
is displayed. Same if the folder is missing.

This patch changes the exception to
\TYPO3\CMS\Core\Resource\Exception.

The user will get a flash message and FAL tries to display the
parent folder of the restricted folder. If the folder is
missing the parent folder is displayed.

Resolves: #51762, #51319
Releases: 6.2
Change-Id: I1fb930f8c13049eeddb27521326f1d0fc8707933
Reviewed-on: https://review.typo3.org/27189
Reviewed-by: Steffen Ritter
Tested-by: Steffen Ritter
parent 5cf92725
Branches
Tags
No related merge requests found
......@@ -170,7 +170,7 @@ class FileListController {
throw new \RuntimeException('Could not find any folder to be displayed.', 1349276894);
}
}
} catch (\TYPO3\CMS\Core\Resource\Exception\FolderDoesNotExistException $fileException) {
} catch (\TYPO3\CMS\Core\Resource\Exception $fileException) {
// Take the first object of the first storage
$fileStorages = $GLOBALS['BE_USER']->getFileStorages();
$fileStorage = reset($fileStorages);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment