diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-07-02 17:50:39 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-02 17:50:39 +0200 |
commit | a3df41ddb6ea50ccd19a77481389e2d978329646 (patch) | |
tree | 66851d44a47e911653f98e86ae5983b6097f0a1f /apps/files_sharing | |
parent | 99f9f7c3c46ba0f58d830649569bdf454cd82deb (diff) | |
parent | 5cb1e20214f96a4a3bb99d4f00933986efd7662d (diff) | |
download | nextcloud-server-a3df41ddb6ea50ccd19a77481389e2d978329646.tar.gz nextcloud-server-a3df41ddb6ea50ccd19a77481389e2d978329646.zip |
Merge pull request #17159 from owncloud/fix-duplicate-id
remove duplicate ID in HTML template for public shares
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index dd0b2eebe21..ffe0472b2b1 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -100,7 +100,7 @@ $thumbSize = 1024; <div id="imgframe"></div> <?php endif; ?> <div class="directDownload"> - <a href="<?php p($_['downloadURL']); ?>" id="download" class="button"> + <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <img class="svg" alt="" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"/> <?php p($l->t('Download %s', array($_['filename'])))?> (<?php p($_['fileSize']) ?>) </a> |