Actions
Bug #19330
closedpages table cannot be used with t3lib_div::loadTCA
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2008-09-15
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If you are programming a backend module, then you want to load the pages TCA using t3lib_div::loadTCA('pages'). Unfortunately this does not work, because the pages table does not have any $TCA['pages'][['ctrl']['dynamicConfigFile'] like all other tables have.
(issue imported from #M9348)
Files
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0)
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Updated by Franz Holzinger over 11 years ago
This has been fixed with TYPO3 6.0.
see file t3lib/stddb/tables.php
$TCA['pages'] = array( 'ctrl' => array( ... 'dynamicConfigFile' => 'T3LIB:tbl_pages.php', ... ) );
Close this issue.
Updated by Alexander Opitz over 11 years ago
- Status changed from Needs Feedback to Closed
Actions