Index: typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php =================================================================== --- typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php (revision 18587) +++ typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php (working copy) @@ -441,10 +441,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']->getLL('chash_error') + ); } + $theCHash = $arr['cHash']; + unset($arr['cHash']); if ($row['item_type']) { // pdf... $lines[] = ''.($arr['key'] ? 'Page '.$arr['key'] : '').' '; Index: typo3/sysext/indexed_search/modfunc1/locallang.xml =================================================================== --- typo3/sysext/indexed_search/modfunc1/locallang.xml (revision 18587) +++ typo3/sysext/indexed_search/modfunc1/locallang.xml (working copy) @@ -7,6 +7,7 @@ + \ No newline at end of file