diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-02-12 16:12:46 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-02-12 16:12:46 +0100 |
commit | f5385e4a63de85d777d20f93e56cbee859329608 (patch) | |
tree | f48e54a6354da809e0b9f8f99094ee13b9e1a282 | |
parent | 623afb69b6a51d57ca99d1d825b6c433a93baa96 (diff) | |
download | nextcloud-server-f5385e4a63de85d777d20f93e56cbee859329608.tar.gz nextcloud-server-f5385e4a63de85d777d20f93e56cbee859329608.zip |
Contacts: Add id to vars with id in them
-rw-r--r-- | apps/contacts/export.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/contacts/export.php b/apps/contacts/export.php index 750d77bcac8..fb3e0a41ae7 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']; |