Skip to content
Snippets Groups Projects
Commit 0d82969b authored by Markus Hoelzle's avatar Markus Hoelzle Committed by Ernesto Baschny
Browse files

[TASK] Release file and folder permission check

This patch changes the warnings to a notices if files or folders are
readable for anyone. This improves usability for users on
non-restrictive systems as 1und1 servers.

Resolves: #57354
Releases: 6.2
Change-Id: Ic9eba030647e837694331d394d45dc1553c0cdf5
Reviewed-on: https://review.typo3.org/28917
Reviewed-by: Ernesto Baschny
Tested-by: Ernesto Baschny
parent 977f7721
Branches
Tags
No related merge requests found
......@@ -91,8 +91,8 @@ class DefaultPermissionsCheck {
$extraMessage = ' (writable by anyone on the server)';
}
} elseif ($perms['or']) {
$permissionStatus = new \TYPO3\CMS\Install\Status\WarningStatus();
$extraMessage = ' (readable by anyone on the server)';
$permissionStatus = new \TYPO3\CMS\Install\Status\NoticeStatus();
$extraMessage = ' (readable by anyone on the server). This is the default set by TYPO3 CMS to be as much compatible as possible but if your system allows, please consider to change rights';
} elseif ($perms['gw']) {
$permissionStatus = new \TYPO3\CMS\Install\Status\OkStatus();
$extraMessage = ' (group writeable)';
......
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