Actions
Bug #47301
closedImprove userFunc parameter parsing
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2013-04-17
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Parameter parsing for userFunc could be improved to handle the following:
userFunc(1,2,"3, 4, 5") => array(1, 2, '3, 4, 5')
userFunc( 1, 2," 3, 4, 5 ") => array(1, 2, ' 3, 4, 5 ')
userFunc( 1, 2, " 3, \"4, 5\" ") => array(1, 2, ' 3, "4, 5" ')
userFunc( 1, 2, ' 3, \"4, 5\" ') => array(1, 2, ' 3, "4, 5" ')
userFunc( 1, 2, ' 3, \'4, 5\' ') => array(1, 2, ' 3, \'4, 5\' ')
Actions