Index: typo3/sysext/opendocs/class.tx_opendocs.php =================================================================== --- typo3/sysext/opendocs/class.tx_opendocs.php (revision 8158) +++ typo3/sysext/opendocs/class.tx_opendocs.php (working copy) @@ -158,6 +158,10 @@ $table = $document[3]['table']; $uid = $document[3]['uid']; $record = t3lib_BEfunc::getRecordWSOL($table, $uid); + if (!is_array($record)) { + // record seems to be deleted + return ''; + } $label = htmlspecialchars(strip_tags(t3lib_div::htmlspecialchars_decode($document[0]))); $icon = t3lib_iconWorks::getSpriteIconForRecord($table, $record); $link = $GLOBALS['BACK_PATH'] . 'alt_doc.php?' . $document[2];