Actions
Bug #16806
closedTCAdefaults.tt_content.imagecols = 1 is missing
Start date:
2006-12-22
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
in tbl_tt_content.php is something missing, so this setting never works:
line 570 ff:
items' => Array (
Array('1', 0),
Array('2', 2),
...
so there is only one element missing ;-)
change the lines to following and all works:
'config' => Array (
'type' => 'select',
'items' => Array (
Array('1', 1),
Array('2', 2),
Array('3', 3),
Array('4', 4),
Array('5', 5),
Array('6', 6),
Array('7', 7),
Array('8', 8)
),
'default' => 1
(issue imported from #M4690)
Files
Actions