aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-25 10:00:21 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-25 10:00:21 +0100
commitef4fca22d1c1c28aa499c12d0600e29e318523b0 (patch)
tree94992044dc773c6ee7c7ad9648898cfa6984c042 /apps/files
parentf90dccf172e57912fc6a160d689e897cb3f1543b (diff)
parent75e6734ef4374fb8d12cab9aaafcc7fc24ea9f0d (diff)
downloadnextcloud-server-ef4fca22d1c1c28aa499c12d0600e29e318523b0.tar.gz
nextcloud-server-ef4fca22d1c1c28aa499c12d0600e29e318523b0.zip
Merge pull request #21844 from owncloud/drop-image-path
Remove OC_Helper::imagePath and use the proper public interface
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/templates/list.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php
index 7906dfc64eb..ea3e6c61d4a 100644
--- a/apps/files/templates/list.php
+++ b/apps/files/templates/list.php
@@ -53,7 +53,7 @@
<span id="selectedActionsList" class="selectedActions">
<a href="" class="download">
<img class="svg" alt=""
- src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" />
+ src="<?php print_unescaped(image_path("core", "actions/download.svg")); ?>" />
<?php p($l->t('Download'))?>
</a>
</span>
@@ -67,7 +67,7 @@
<span class="selectedActions"><a href="" class="delete-selected">
<?php p($l->t('Delete'))?>
<img class="svg" alt=""
- src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
+ src="<?php print_unescaped(image_path("core", "actions/delete.svg")); ?>" />
</a></span>
</th>
</tr>