]> source.dussan.org Git - nextcloud-server.git/commitdiff
Contacts: Add id to vars with id in them
authorBart Visscher <bartv@thisnet.nl>
Sun, 12 Feb 2012 15:12:46 +0000 (16:12 +0100)
committerBart Visscher <bartv@thisnet.nl>
Sun, 12 Feb 2012 15:12:46 +0000 (16:12 +0100)
apps/contacts/export.php

index 750d77bcac832d30b6cc65d8d0445959567d9b16..fb3e0a41ae7bc9eafe37c8718c6db2a3cbc424b2 100644 (file)
@@ -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'];