From 0d82969b2b4dcd0dcb45db65ff2e680c7923bd11 Mon Sep 17 00:00:00 2001 From: Markus Hoelzle <typo3@markus-hoelzle.de> Date: Thu, 27 Mar 2014 19:37:24 +0100 Subject: [PATCH] [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 --- .../Classes/FolderStructure/DefaultPermissionsCheck.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/install/Classes/FolderStructure/DefaultPermissionsCheck.php b/typo3/sysext/install/Classes/FolderStructure/DefaultPermissionsCheck.php index 00894bc3fecf..0501cf3ef583 100644 --- a/typo3/sysext/install/Classes/FolderStructure/DefaultPermissionsCheck.php +++ b/typo3/sysext/install/Classes/FolderStructure/DefaultPermissionsCheck.php @@ -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)'; -- GitLab