Advanced Search: Display links also when the object is not visible

SVN:trunk[5708]
This commit is contained in:
Eric Espié
2018-04-20 13:45:02 +00:00
parent c734eec9e1
commit aa4416ac4e
2 changed files with 11 additions and 4 deletions

View File

@@ -227,7 +227,13 @@ class DisplayBlock
{
// render now
$sHtml .= "<div id=\"$sId\" class=\"display_block\" >\n";
$sHtml .= $this->GetRenderContent($oPage, $aExtraParams, $sId);
try
{
$sHtml .= $this->GetRenderContent($oPage, $aExtraParams, $sId);
} catch (Exception $e)
{
}
$sHtml .= "</div>\n";
}
else