Skip to content
Snippets Groups Projects
Commit b3fbd94c authored by Gregor Gawol's avatar Gregor Gawol Committed by André Lahmann
Browse files

refs #6820:

* show journaltitle without search url if issn array is empty
parent 357ebd20
No related merge requests found
...@@ -137,11 +137,10 @@ if($loggedin = $this->auth()->isLoggedIn()) { ...@@ -137,11 +137,10 @@ if($loggedin = $this->auth()->isLoggedIn()) {
<tr> <tr>
<th><?=$this->transEsc('In')?>: </th> <th><?=$this->transEsc('In')?>: </th>
<td> <td>
<? $issns = $aidatain['issns']; if (!empty($issns)): ?> <? $jtitle = $aidatain['jtitle']; $issns = $aidatain['issns']; if (!empty($issns)): ?>
<a href="<?=$this->record($this->driver)->getLinkISN($issns)?>"> <a href="<?=$this->record($this->driver)->getLinkISN($issns)?>">
<? $jtitle = $aidatain['jtitle']; <? if (!empty($jtitle)): ?><?=$this->escapeHtml($jtitle)?><? endif; ?>
if (!empty($jtitle)): ?><?=$this->escapeHtml($jtitle)?><? endif; ?> </a><? elseif (!empty($jtitle)): ?><?=$this->escapeHtml($jtitle)?><? endif; ?><? $volume = $aidatain['volume']; if (!empty($volume)): ?><? if (empty($jtitle)): ?>, <? endif; ?><?=$this->escapeHtml($volume) ?><? endif; ?><? $date = $aidatain['date']; if (!empty($date)): ?><? if (empty($volume)): ?>, <? endif; ?>(<?=$this->escapeHtml($date) ?>)<? endif; ?><? $issue = $aidatain['issue']; if (!empty($issue)): ?>, <?=$this->escapeHtml($issue) ?><? endif; ?><? $pages = $aidatain['pages']; if (!empty($pages)): ?>, <?=$this->transEsc('p.')?> <?=$this->escapeHtml($pages) ?><? endif; ?>
</a><? endif; ?><? $volume = $aidatain['volume']; if (!empty($volume)): ?>, <?=$this->escapeHtml($volume) ?><? endif; ?><? $date = $aidatain['date']; if (!empty($date)): ?><? if (empty($volume)): ?>, <? endif; ?>(<?=$this->escapeHtml($date) ?>)<? endif; ?><? $issue = $aidatain['issue']; if (!empty($issue)): ?>, <?=$this->escapeHtml($issue) ?><? endif; ?><? $pages = $aidatain['pages']; if (!empty($pages)): ?>, <?=$this->transEsc('p.')?> <?=$this->escapeHtml($pages) ?><? endif; ?>
</td> </td>
</tr> </tr>
<? endif; ?> <? endif; ?>
......
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