Actions
Bug #89071
closedDBmounts and FileMounts maxvalues are different than be_users/be_groups
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Workspaces
Target version:
-
Start date:
2019-09-03
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
The maxitems values for both DBmounts and FileMounts in Workspace are different from be_users and be_groups.
Current :
$TCA['be_groups']['columns']['db_mountpoints']['config']['maxitems'] = 100; $TCA['be_users']['columns']['db_mountpoints']['config']['maxitems'] = 100;
But Workspace is 25:
$TCA['sys_workspace']['columns']['db_mountpoints']['config']['maxitems'] = 25;
Both should reflect the value in users and groups :
$TCA['sys_workspace']['columns']['db_mountpoints']['config']['maxitems'] = 100; $TCA['sys_workspace']['columns']['file_mountpoints']['config']['maxitems'] = 100;
Updated by Gerrit Code Review about 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/61616
Updated by Georg Ringer about 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 22d0499ebb813ed3b0d606b4b697943d8a5d5cef.
Actions