From b0dbca0cc7f2d07dbf01c54861b932d8dc9fe2df Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Mon, 16 Jan 2012 02:27:59 +0100 Subject: [PATCH] fix export link for contacts --- apps/contacts/templates/part.details.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/contacts/templates/part.details.php b/apps/contacts/templates/part.details.php index 9af7f0654d..679ae5ede2 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 ?> -- GitLab