8000 bugfix: the attachment arrow (indicating the availability of addition… by interduo · Pull Request #2481 · chilek/lms · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bugfix: the attachment arrow (indicating the availability of addition… #2481

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/default/customer/customerdocuments.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
url=$url external=true
text="<i class=\"lms-ui-icon-view{if preg_match('/pdf/',$docattach.contenttype)} pdf{elseif preg_match('/csv|excel|spreadsheet/',$docattach.contenttype)} xls{/if}\"></i>"}
{/if}
{if count($doc.attachments) > 1 || !$docattach.type < 1}
{if $doc.attachments|size > 1 || $docattach.type < 1}
<a href="#" id="allattachments-toggle-{$doc.docid}" return false;" title="{trans("more document attachments")}">
<img src="img/asc_order.gif">
</a>
Expand Down
0