Index: typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php =================================================================== --- typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php (revision 6966) +++ typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php (working copy) @@ -434,10 +434,13 @@ // cHash parameters: $arr = unserialize($row['cHashParams']); - if (is_array($arr)) { - $theCHash = $arr['cHash']; - unset($arr['cHash']); + if (!is_array($arr)) { + $arr = array( + 'cHash' => $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_general.xml:LGL.error', true) + ); } + $theCHash = $arr['cHash']; + unset($arr['cHash']); if ($row['item_type']) { // pdf... $lines[] = ''.($arr['key'] ? 'Page '.$arr['key'] : '').' '; Index: typo3/sysext/lang/locallang_general.xml =================================================================== --- typo3/sysext/lang/locallang_general.xml (revision 6966) +++ typo3/sysext/lang/locallang_general.xml (working copy) @@ -61,6 +61,7 @@ +