[TYPO3-ttnews] TT_News not working with BE Search TYPO3 4.6+

Loek Hilgersom loek at netcoop.nl
Tue Sep 11 11:55:55 CEST 2012


Op 10-09-12 16:47, Errol I. Mars schreef:
 > Tt_news does not work with the TYPO3 BE search in TYPO3 4.6+. Is
 > there a fix for this?

In fact this is a bug in livesearch which fails when the TCA setting 
'sortby' exists but is empty.

You can do a quick fix by setting your preferred sorting in tx_news 
ext_tables.php line 57 or around there:

Change this:
'sortby' => ($configuration->getManualSorting() ? 'sorting' : ''),
into:
'sortby' => ($configuration->getManualSorting() ? 'sorting' : 'crdate 
DESC'),

I'll post a bug & fix for livesearch on forge.

Loek


More information about the TYPO3-project-tt-news mailing list