diff options
Diffstat (limited to 'apps/contacts/export.php')
-rw-r--r-- | apps/contacts/export.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/export.php b/apps/contacts/export.php index a1e974c962b..735d1c5b631 100644 --- a/apps/contacts/export.php +++ b/apps/contacts/export.php @@ -33,7 +33,7 @@ if(isset($book)){ exit; } header('Content-Type: text/directory'); - header('Content-Disposition: inline; filename=' . $data['fullname'] . '.vcf'); + header('Content-Disposition: inline; filename=' . str_replace(' ', '_', $data['fullname']) . '.vcf'); echo $data['carddata']; } ?> |