Skip to content

Commit

Permalink
Merge pull request thebuggenie#288 from milkyway-git/patch-1
Browse files Browse the repository at this point in the history
Get Link-ID from array
  • Loading branch information
zegenie committed Jul 30, 2014
2 parents e70bb68 + 08c5adc commit 1586774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/main/templates/_issuedetailslisteditable.inc.php
Expand Up @@ -652,7 +652,7 @@
<div class="no_items" id="viewissue_no_uploaded_files"<?php if (count($issue->getFiles()) + count($issue->getLinks()) > 0): ?> style="display: none;"<?php endif; ?>><?php echo __('There is nothing attached to this issue'); ?></div>
<ul class="attached_items" id="viewissue_uploaded_links">
<?php foreach ($issue->getLinks() as $link_id => $link): ?>
<?php include_template('attachedlink', array('issue' => $issue, 'link' => $link, 'link_id' => $link_id)); ?>
<?php include_template('attachedlink', array('issue' => $issue, 'link' => $link, 'link_id' => $link['id'])); ?>
<?php endforeach; ?>
</ul>
<ul class="attached_items" id="viewissue_uploaded_files">
Expand Down

0 comments on commit 1586774

Please sign in to comment.