diff --git a/apps/contacts/export.php b/apps/contacts/export.php index 750d77bcac..fb3e0a41ae 100644 --- a/apps/contacts/export.php +++ b/apps/contacts/export.php @@ -9,20 +9,20 @@ require_once ("../../lib/base.php"); OC_Util::checkLoggedIn(); OC_Util::checkAppEnabled('contacts'); -$book = isset($_GET['bookid']) ? $_GET['bookid'] : NULL; -$contact = isset($_GET['contactid']) ? $_GET['contactid'] : NULL; +$bookid = isset($_GET['bookid']) ? $_GET['bookid'] : NULL; +$contactid = isset($_GET['contactid']) ? $_GET['contactid'] : NULL; $nl = "\n"; -if(isset($book)){ - $addressbook = OC_Contacts_App::getAddressbook($book); - $cardobjects = OC_Contacts_VCard::all($book); +if(isset($bookid)){ + $addressbook = OC_Contacts_App::getAddressbook($bookid); + $cardobjects = OC_Contacts_VCard::all($bookid); header('Content-Type: text/directory'); header('Content-Disposition: inline; filename=' . str_replace(' ', '_', $addressbook['displayname']) . '.vcf'); foreach($cardobjects as $card) { echo $card['carddata'] . $nl; } -}elseif(isset($contact)){ - $data = OC_Contacts_App::getContactObject($contact); +}elseif(isset($contactid)){ + $data = OC_Contacts_App::getContactObject($contactid); header('Content-Type: text/directory'); header('Content-Disposition: inline; filename=' . str_replace(' ', '_', $data['fullname']) . '.vcf'); echo $data['carddata'];