Skip to content

Commit

Permalink
Merge pull request pkp#1389 from bozana/1907-stable
Browse files Browse the repository at this point in the history
pkp/pkp-lib#1907 consider issue identification on the issue archive page
  • Loading branch information
bozana authored May 18, 2017
2 parents e6e1907 + 21fe4d3 commit 5a6afbd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion templates/frontend/objects/issue_summary.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
*
* @uses $issue Issue The issue
*}
{if $issue->getShowTitle()}
{assign var=issueTitle value=$issue->getLocalizedTitle()}
{/if}
{if $issue->getShowVolume() || $issue->getShowNumber() || $issue->getShowYear()}
{assign var=issueSeries value=$issue->getIssueSeries()}
{/if}
{assign var=issueCover value=$issue->getLocalizedCoverImageUrl()}

<div class="obj_issue_summary">
Expand All @@ -28,7 +32,7 @@
{$issueSeries|escape}
{/if}
</a>
{if $issueTitle}
{if $issueTitle && $issueSeries}
<div class="series">
{$issueSeries|escape}
</div>
Expand Down

0 comments on commit 5a6afbd

Please sign in to comment.