summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-04-06 10:18:56 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-04-06 10:25:04 +0200
commit22898fa1077377f0010470b54d490659245a0931 (patch)
tree69fc7764fd950e7fa709acf633880b5bc07d8d1b /settings
parent046506dd146f823499098d0d2b0042072e436469 (diff)
downloadnextcloud-server-22898fa1077377f0010470b54d490659245a0931.tar.gz
nextcloud-server-22898fa1077377f0010470b54d490659245a0931.zip
Use proper shortcut methods in templates
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/personal.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 302feddcb42..29bf240e7e3 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -170,15 +170,15 @@ if($_['passwordChangeSupported']) {
<div id="clientsbox" class="section clientsbox">
<h2><?php p($l->t('Get the apps to sync your files'));?></h2>
<a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank">
- <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'desktopapp.svg')); ?>"
+ <img src="<?php print_unescaped(image_path('core', 'desktopapp.svg')); ?>"
alt="<?php p($l->t('Desktop client'));?>" />
</a>
<a href="<?php p($_['clients']['android']); ?>" rel="noreferrer" target="_blank">
- <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'googleplay.png')); ?>"
+ <img src="<?php print_unescaped(image_path('core', 'googleplay.png')); ?>"
alt="<?php p($l->t('Android app'));?>" />
</a>
<a href="<?php p($_['clients']['ios']); ?>" rel="noreferrer" target="_blank">
- <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'appstore.svg')); ?>"
+ <img src="<?php print_unescaped(image_path('core', 'appstore.svg')); ?>"
alt="<?php p($l->t('iOS app'));?>" />
</a>