Actions
Bug #21917
closedTCEmain doesn't substitute all NEW
Status:
Rejected
Priority:
Won't have this time
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-01-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
This works:
$data['be_groups']['NEW3'] = array(...);
$data['be_users'][$beuser['uid']] = array(
'usergroup' => $beuser['usergroup']. ($beuser['usergroup'] ? ',' : '') . 'NEW3',
);
even commalist works
$data['be_users'][$beuser['uid']] ['usergroup'] = 'NEW1,NEW2,NEW3';
This doesn't work:
$data['pages'][$pageID]['TSconfig'] = 'TCEMAIN.permissions.groupid = NEW3';
Also fields with MM-relation doesn't work, example:
$data['tt_news']['category'] = 'NEW1,NEW2';
(issue imported from #M13163)
Updated by Dmitry Dulepov almost 13 years ago
- Status changed from New to Rejected
- Priority changed from Should have to Won't have this time
- Target version deleted (
0)
This is correct. TSConfig is not a field where substitution happens. Only fields with database relations may have substituions.
Actions