[TYPO3] pixe_feediting conflicts with tt_news?

Tapio Markula tapio.markula at xetpoint.fi
Fri Nov 16 13:58:41 CET 2007


Brian Bendtsen
> Ok, if I just tried removing these lines:
> 
>     if(t3lib_extMgm::isLoaded('tt_news')) {
>      
> $TCA['tt_news']['columns']['ext_url']['config']['wizards']['link']['icon']=$temp_eP_icons.'link_popup.gif'; 
> 
>      
> $TCA['tt_news']['columns']['category']['config']['wizards']['edit']['icon']=$temp_eP_icons.'edit2.gif'; 
> 
>      
> $TCA['tt_news']['columns']['parent_category']['config']['wizards']['list']['icon']=$temp_eP_icons.'list.gif'; 
> 
>         }
> 
> in the ext_tables.php and that helped, now I can edit my news records. 

but you left these
$TCA['tt_content']['columns']['header_link']['config']['wizards']['link']['icon']=$temp_eP_icons.'link_popup.gif';
$TCA['tt_content']['columns']['image_link']['config']['wizards']['link']['icon']=$temp_eP_icons.'link_popup.gif';

and they worked with tt_content records?
maybe loading order problem

maybe needed 't3lib_div::loadTCA("tt_news");'?

if(t3lib_extMgm::isLoaded('tt_news')) {
		t3lib_div::loadTCA("tt_news");
	 
$TCA['tt_news']['columns']['ext_url']['config']['wizards']['link']['icon']=$temp_eP_icons.'link_popup.gif';
	 
$TCA['tt_news']['columns']['category']['config']['wizards']['edit']['icon']=$temp_eP_icons.'edit2.gif';
	 
$TCA['tt_news']['columns']['parent_category']['config']['wizards']['list']['icon']=$temp_eP_icons.'list.gif';
		}


More information about the TYPO3-english mailing list