diff --git a/module/fid/src/View/Helper/Root/GetIt.php b/module/fid/src/View/Helper/Root/GetIt.php index b8a79995a376bc6b04a5eeb4374e6094fe6f0e27..f12571cd82d20455ef0ab824bcd1c3dc48a94b5c 100644 --- a/module/fid/src/View/Helper/Root/GetIt.php +++ b/module/fid/src/View/Helper/Root/GetIt.php @@ -241,7 +241,6 @@ class GetIt extends AbstractHelper $accordeonHeadline = $this->accordeonHeadlineDefault; $boxHeadline = $this->translate('Get it'); $notice = $this->translate('getit_text_default'); - $noticeWithLink = null; $showLinks = true; $showOrderButton = false; $showPartCopyButton = false; @@ -250,6 +249,7 @@ class GetIt extends AbstractHelper $isEBCEBooks = false; $hideNotice = false; $isAiSidRecord = false; + $noticeLinkType = 'register'; // let specific functions override defaults where necessary foreach ($this->sids as $sid_config) { diff --git a/themes/finc/templates/RecordDriver/SolrMarc/link-related.phtml b/themes/finc/templates/RecordDriver/SolrMarc/link-related.phtml new file mode 100644 index 0000000000000000000000000000000000000000..c3eb87fc3f5a17f8627cda9be65be255a9079e52 --- /dev/null +++ b/themes/finc/templates/RecordDriver/SolrMarc/link-related.phtml @@ -0,0 +1 @@ +<?=$this->url('search-results')?>?lookfor=<?=urlencode($lookfor)?> diff --git a/themes/finc/templates/search/history.phtml b/themes/finc/templates/search/history.phtml index ae21fffccbc1f474d1f9ec26e5cab4617dd76a30..04a7ee298e0aba39bd1d24479b4888e5c268933f 100644 --- a/themes/finc/templates/search/history.phtml +++ b/themes/finc/templates/search/history.phtml @@ -36,7 +36,8 @@ <?php endif; ?> <?php if (!empty($this->unsaved)): ?> <?=$this->context()->renderInContext('search/history-table.phtml', ['showSaved' => false]);?> - <a href="?purge=true"><i class="fa fa-remove" aria-hidden="true"></i> <?=$this->transEsc("history_purge")?></a> + <?php /* refs #17072: added url - GG */ ?> + <a href="<?= $this->url('search-history') ?>?purge=true"><i class="fa fa-remove" aria-hidden="true"></i> <?=$this->transEsc("history_purge")?></a> <?php else: ?> <?=$this->transEsc("history_no_searches")?> <?php endif; ?>