diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-06-30 11:07:54 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-06-30 11:07:54 +0000 |
commit | 704a1c655e350aa4881069297f99caa0c1d56952 (patch) | |
tree | fe9e7c50c7889050a053968b02f5daf659e50397 /apps | |
parent | 6e6f90a8a242c96cc90a5ba35248f7abdfddd6b4 (diff) | |
download | nextcloud-server-704a1c655e350aa4881069297f99caa0c1d56952.tar.gz nextcloud-server-704a1c655e350aa4881069297f99caa0c1d56952.zip |
Contacts: fix add contact icon path
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/templates/index.php b/apps/contacts/templates/index.php index 0d4219c9f2d..a8fb6c57c2c 100644 --- a/apps/contacts/templates/index.php +++ b/apps/contacts/templates/index.php @@ -9,7 +9,7 @@ </div> <div id="bottomcontrols"> <form> - <button class="svg" id="contacts_newcontact" title="<?php echo $l->t('Add Contact'); ?>"><img class="svg" src="<?php echo OCP\Util::linkTo('contacts', 'img/contact-new.svg'); ?>" alt="<?php echo $l->t('Add Contact'); ?>" /></button> + <button class="svg" id="contacts_newcontact" title="<?php echo $l->t('Add Contact'); ?>"><img class="svg" src="<?php echo OCP\Util::imagePath('contacts', 'contact-new.svg'); ?>" alt="<?php echo $l->t('Add Contact'); ?>" /></button> <button class="svg" id="chooseaddressbook" title="<?php echo $l->t('Addressbooks'); ?>"><img class="svg" src="core/img/actions/settings.svg" alt="<?php echo $l->t('Addressbooks'); ?>" /></button> </form> </div> |