diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-08 13:28:12 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-08 13:28:12 +0200 |
commit | 2b22f0db0a8238d088d6c1cca8a6df909b36e323 (patch) | |
tree | c9934841767d1cf4dd6ff555b8a85c8d5f7c9e92 /apps | |
parent | ea70ca3ce3cbbaac0e24e30304f44dfc37c11f56 (diff) | |
download | nextcloud-server-2b22f0db0a8238d088d6c1cca8a6df909b36e323.tar.gz nextcloud-server-2b22f0db0a8238d088d6c1cca8a6df909b36e323.zip |
Add missing requesttoken.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/ajax/importaddressbook.php | 1 | ||||
-rw-r--r-- | apps/contacts/templates/part.importaddressbook.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/contacts/ajax/importaddressbook.php b/apps/contacts/ajax/importaddressbook.php index f93bbfa4d9d..3c01e24a185 100644 --- a/apps/contacts/ajax/importaddressbook.php +++ b/apps/contacts/ajax/importaddressbook.php @@ -18,6 +18,7 @@ $maxUploadFilesize = min($maxUploadFilesize ,$freeSpace); $tmpl = new OCP\Template('contacts', 'part.importaddressbook'); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); +$tmpl->assign('requesttoken', $_SERVER['HTTP_REQUESTTOKEN']); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $tmpl->printpage(); ?> diff --git a/apps/contacts/templates/part.importaddressbook.php b/apps/contacts/templates/part.importaddressbook.php index 01f8dd77d0a..8ceb5f3538b 100644 --- a/apps/contacts/templates/part.importaddressbook.php +++ b/apps/contacts/templates/part.importaddressbook.php @@ -12,6 +12,7 @@ <th><?php echo $l->t('Select address book to import to:') ?></th> <td> <form id="import_upload_form" action="<?php echo OCP\Util::linkTo('contacts', 'ajax/uploadimport.php'); ?>" method="post" enctype="multipart/form-data" target="import_upload_target"> + <input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>"> <select id="book" name="book" class="float"> <?php $contacts_options = OC_Contacts_Addressbook::all(OCP\USER::getUser()); |