diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-08-02 01:15:20 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-08-02 04:18:44 +0200 |
commit | f84e92e6e3934f84f2ecee88af6a19ec16a0dab9 (patch) | |
tree | 0f1332be5637583c43fb4437063c4f1234a0cf2b /apps/contacts/ajax | |
parent | 937058cdec1b853cd1f60feeb925e3907c676679 (diff) | |
download | nextcloud-server-f84e92e6e3934f84f2ecee88af6a19ec16a0dab9.tar.gz nextcloud-server-f84e92e6e3934f84f2ecee88af6a19ec16a0dab9.zip |
More files to delete \o/
Diffstat (limited to 'apps/contacts/ajax')
-rw-r--r-- | apps/contacts/ajax/addbook.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/apps/contacts/ajax/addbook.php b/apps/contacts/ajax/addbook.php deleted file mode 100644 index 751185b44fd..00000000000 --- a/apps/contacts/ajax/addbook.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/** - * Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - - -OCP\JSON::checkLoggedIn(); -OCP\JSON::checkAppEnabled('contacts'); -$book = array( - 'id' => 'new', - 'displayname' => '', -); -$tmpl = new OCP\Template('contacts', 'part.editaddressbook'); -$tmpl->assign('new', true); -$tmpl->assign('addressbook', $book); -$tmpl->printPage(); |