From 4e88fb4137c7b7ab79429770d4e38e56ceb99ae2 Mon Sep 17 00:00:00 2001 From: Dorian Merz <merz@ub.uni-leipzig.de> Date: Thu, 25 Feb 2021 12:59:39 +0100 Subject: [PATCH] refs #18733 [fid_bbi] use semicolon to delimit author names in result list --- .../templates/RecordDriver/DefaultRecord/result-list.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/fid_bbi/templates/RecordDriver/DefaultRecord/result-list.phtml b/themes/fid_bbi/templates/RecordDriver/DefaultRecord/result-list.phtml index 6bbfb931b50..6af60b3d318 100644 --- a/themes/fid_bbi/templates/RecordDriver/DefaultRecord/result-list.phtml +++ b/themes/fid_bbi/templates/RecordDriver/DefaultRecord/result-list.phtml @@ -51,8 +51,8 @@ $icon = $this->record($this->driver)->getIconMapping($format); ); ?> <a href="<?=$authorLink?>"> - <?=$this->highlight($summAuthor)?> - </a><?=$i + 1 < $authorCount ? ',' : ''?> + <?=$this->highlight($summAuthor)?><?=$i + 1 < $authorCount ? ';' : ''?> + </a> <?php endforeach; ?> <?php endif; ?> -- GitLab