diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-01-16 02:27:59 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-01-16 02:27:59 +0100 |
commit | b0dbca0cc7f2d07dbf01c54861b932d8dc9fe2df (patch) | |
tree | 17efcaad5c5fe670cea7d4dcbe9ad89acbbeabef /apps | |
parent | 757e6cd0aaf3d9f651446bd063002b3fbf1f4b2e (diff) | |
download | nextcloud-server-b0dbca0cc7f2d07dbf01c54861b932d8dc9fe2df.tar.gz nextcloud-server-b0dbca0cc7f2d07dbf01c54861b932d8dc9fe2df.zip |
fix export link for contacts
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/templates/part.details.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/templates/part.details.php b/apps/contacts/templates/part.details.php index 9af7f0654dd..679ae5ede2f 100644 --- a/apps/contacts/templates/part.details.php +++ b/apps/contacts/templates/part.details.php @@ -1,6 +1,6 @@ <?php if(array_key_exists('FN',$_['details'])): ?> <?php echo $this->inc('part.property.FN', array('property' => $_['details']['FN'][0])); ?> - <a href="export?contactid=<?php echo $_['id']; ?>"><img class="svg action" id="contacts_downloadcard" src="<?php echo image_path('', 'actions/download.svg'); ?>" title="<?php echo $l->t('Download contact');?>" /></a> + <a href="export.php?contactid=<?php echo $_['id']; ?>"><img class="svg action" id="contacts_downloadcard" src="<?php echo image_path('', 'actions/download.svg'); ?>" title="<?php echo $l->t('Download contact');?>" /></a> <img class="svg action" id="contacts_deletecard" src="<?php echo image_path('', 'actions/delete.svg'); ?>" title="<?php echo $l->t('Delete contact');?>" /> <?php if(isset($_['details']['PHOTO'])): // Emails first ?> |