Actions
Bug #48643
closedhome directories of users and groups are not mounted in file list
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
File Abstraction Layer (FAL)
Target version:
-
Start date:
2013-05-29
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.1
PHP Version:
5.3
Tags:
Complexity:
medium
Is Regression:
No
Sprint Focus:
Description
There are several errors in the initializeFileStorages() function of file
sysext/core/Classes/Authentication/BackendUserAuthentication.php
- line 1466 should read
$userHomeFilterIdentifier = $userHomeFilter . $this->user['uid'] . $GLOBALS['TYPO3_CONF_VARS']['BE']['userUploadDir'];
- in lines 1457-8 $userHomeStorageUid is (falsely?) set to $GLOBALS['TYPO3_CONF_VARS']['BE']['userHomePath'] and then intval($userHomeStorageUid) is called, which sets it to 0, so that the rest of the mouning code is not executed
- analogue error in lines 1475-6 for the groups
- after fixing this, the folder still are not mounted, so there seem to be some deeper errors
Actions