Actions
Bug #81546
closedIndentation in t3editor is wrong
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
t3editor
Target version:
-
Start date:
2017-06-12
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.1
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
As soon as the first object in the a TypoScript configuration has dot notation, the the next line will not be indented.
E.g.:
plugin.tx-rest { # dot notation
settings { # second line will not be indented
aliases{} # third line will be indeted again
paths {}
[...]
}
Whereas this works fine:
plugin {
tx_rest {
settings {}
aliases {}
}
}
Actions