diff --git a/module/finc/src/finc/View/Helper/Root/RecordLink.php b/module/finc/src/finc/View/Helper/Root/RecordLink.php index 9ced0372af74cd25a1df8f94a5210dcf112316d0..12e27d4066fc9d9758aaf9db0483ef1545e3031c 100644 --- a/module/finc/src/finc/View/Helper/Root/RecordLink.php +++ b/module/finc/src/finc/View/Helper/Root/RecordLink.php @@ -152,13 +152,11 @@ class RecordLink extends \VuFind\View\Helper\Root\RecordLink */ public function getUrl($driver) { - if ($driver->getUniqueID()) { - try { - return $this->getTabUrl($driver); - } catch (RecordMissingException $exception) { - // return default result on Missing Record - // throw all other Exceptions - } + try { + return $this->getTabUrl($driver); + } catch (RecordMissingException $exception) { + // return default result on Missing Record + // throw all other Exceptions } return ""; }