aboutsummaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/deletebook.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2011-12-27 22:18:01 +0100
committerBart Visscher <bartv@thisnet.nl>2011-12-27 22:18:01 +0100
commit3e2e5196d2b9a0d1e2d2c0e7d2e8ae0452685de0 (patch)
tree41d227de4b2d96d3a1ca346c250a1270946f1842 /apps/contacts/ajax/deletebook.php
parent5fd595c0bfcd3fb8857f62aa9efb28a2669a0301 (diff)
parentf3e8776dc63656d99c39c007c230a80c0c9e384b (diff)
downloadnextcloud-server-3e2e5196d2b9a0d1e2d2c0e7d2e8ae0452685de0.tar.gz
nextcloud-server-3e2e5196d2b9a0d1e2d2c0e7d2e8ae0452685de0.zip
Merge branch 'tanghus_remote_backup' of git://gitorious.org/~tanghus/owncloud/tanghus-owncloud
Conflicts: apps/calendar/export.php apps/contacts/index.php
Diffstat (limited to 'apps/contacts/ajax/deletebook.php')
-rw-r--r--apps/contacts/ajax/deletebook.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/contacts/ajax/deletebook.php b/apps/contacts/ajax/deletebook.php
index 3ede17ab886..a89c00575e9 100644
--- a/apps/contacts/ajax/deletebook.php
+++ b/apps/contacts/ajax/deletebook.php
@@ -23,11 +23,13 @@
// Init owncloud
require_once('../../../lib/base.php');
+$l10n = new OC_L10N('contacts');
// Check if we are a user
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('contacts');
-$id = $_GET['id'];
+//$id = $_GET['id'];
+$id = $_POST['id'];
$addressbook = OC_Contacts_App::getAddressbook( $id );
OC_Contacts_Addressbook::delete($id);