From ea5c80d3f3680fd97b4810a06f7ca7da8f855430 Mon Sep 17 00:00:00 2001 From: purr <purr@ub.uni-leipzig.de> Date: Mon, 16 Sep 2019 17:37:41 +0200 Subject: [PATCH] refs #16002 [fid_adlr] don't render record link of parent record if link can't be resolved --- .../RecordDriver/DefaultRecord/result-list.phtml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/themes/fid_adlr/templates/RecordDriver/DefaultRecord/result-list.phtml b/themes/fid_adlr/templates/RecordDriver/DefaultRecord/result-list.phtml index b3a0b7506be..3582e810146 100644 --- a/themes/fid_adlr/templates/RecordDriver/DefaultRecord/result-list.phtml +++ b/themes/fid_adlr/templates/RecordDriver/DefaultRecord/result-list.phtml @@ -60,7 +60,16 @@ if ($cover): <?php $containerSource = $this->driver->getSourceIdentifier(); ?> <?php $containerID = $this->driver->getContainerRecordID(); ?> <?php /* TODO: handle highlighting more elegantly here: */ ?> - <a href="<?=($containerID ? $this->recordLink()->getUrl("$containerSource|$containerID") : $this->record($this->driver)->getLink('journaltitle', str_replace(['{{{{START_HILITE}}}}', '{{{{END_HILITE}}}}'], '', $journalTitle)))?>"><?=$this->highlight($journalTitle) ?></a> + <?php if ($containerID): ?> + <?php $recordLinkUrl = $this->recordLink()->getUrl("$containerSource|$containerID"); ?> + <?php if ($recordLinkUrl != ""): ?> + <a href="<?=$recordLinkUrl?>"><?=$this->highlight($journalTitle) ?></a> + <?php else: ?> + <?=$this->highlight($journalTitle) ?> + <?php endif; ?> + <?php else: ?> + <a href="<?=$this->record($this->driver)->getLink('journaltitle', str_replace(['{{{{START_HILITE}}}}', '{{{{END_HILITE}}}}'] , '', $journalTitle))?>"><?=$this->highlight($journalTitle) ?></a> + <?php endif; ?> <?php /* finc-specific: nxt line #8639 - CK */ ?> <?=!empty($summDate) ? ' (' . $this->escapeHtml($summDate) . ')' : ''?> <?php elseif (!empty($summDate)): ?> -- GitLab