Skip to content
Snippets Groups Projects
Commit c9bbf344 authored by Robert Lange's avatar Robert Lange
Browse files

refs #15534 [fid_bbi] use solr field title in detail view

* show solr field title with blanks before and after semicolon
* semicolon between 245 a and b
parent bde0474f
No related merge requests found
...@@ -43,9 +43,8 @@ ...@@ -43,9 +43,8 @@
in finc: keep schema name tag here!! #13861 - CK in finc: keep schema name tag here!! #13861 - CK
*/ */
?> ?>
<?php /* finc: add schema tags for title #13850 - VE */ ?> <?php /* fid_bbi: show solr field title with blanks before and after semicolon - semicolon between 245 a and b #15534 - RL */ ?>
<h3 property="name"><?=$this->escapeHtml(preg_replace('/(\s[\/\.:]\s*)*$/', '', $this->truncate($this->driver->getShortTitle() . ' ' . $this->driver->getSubtitle() . ' ' . $this->driver->getTitleSection(), 170)))?></h3> <h3 property="name"><?=$this->escapeHtml(preg_replace(['/(\s[\/\.:]\s*)*$/', '/(\s*):(\s*)/'], ['', ' : '], $this->truncate($this->driver->getTitle(), 170)))?></h3>
<?/* fid_bbi: #15189 remove summary - GG */ ?> <?/* fid_bbi: #15189 remove summary - GG */ ?>
<?php if ($this->userlist()->getMode() !== 'disabled'): ?> <?php if ($this->userlist()->getMode() !== 'disabled'): ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment