]> source.dussan.org Git - nextcloud-server.git/commitdiff
Added missing requesttoken.
authorThomas Tanghus <thomas@tanghus.net>
Tue, 26 Jun 2012 16:04:22 +0000 (18:04 +0200)
committerThomas Tanghus <thomas@tanghus.net>
Tue, 26 Jun 2012 16:15:24 +0000 (18:15 +0200)
apps/contacts/ajax/loadcard.php
apps/contacts/js/contacts.js

index fbb831f4a1260a739c1d4213dd67749ebc7ce3b3..1309faaa7a2a7a9a77beb6aa7713135eb3f3253e 100644 (file)
@@ -27,6 +27,7 @@ OCP\JSON::checkAppEnabled('contacts');
 $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
 $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
 $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
+$requesttoken = $_GET['requesttoken'];
 
 $freeSpace=OC_Filesystem::free_space('/');
 $freeSpace=max($freeSpace,0);
@@ -41,6 +42,7 @@ $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesi
 $tmpl->assign('adr_types',$adr_types);
 $tmpl->assign('phone_types',$phone_types);
 $tmpl->assign('email_types',$email_types);
+$tmpl->assign('requesttoken', $requesttoken);
 $tmpl->assign('id','');
 $page = $tmpl->fetchPage();
 
index 036734049b6d1718bb9cc7101afdff610e834240..204fe18a52de0469e07887677054cc886d002db1 100644 (file)
@@ -315,6 +315,7 @@ Contacts={
                        },
                        add:function(n, fn, aid, isnew){ // add a new contact
                                aid = aid?aid:$('#contacts h3.active').first().data('id');
+                               console.log('add() aid: ' + aid);
                                var localAddcontact = function(n, fn, aid, isnew) {
                                        $.post(OC.filePath('contacts', 'ajax', 'addcontact.php'), { n: n, fn: fn, aid: aid, isnew: isnew },
                                        function(jsondata) {
@@ -359,7 +360,7 @@ Contacts={
                        
                                var card = $('#card')[0];
                                if(!card) {
-                                       $.getJSON(OC.filePath('contacts', 'ajax', 'loadcard.php'),{},function(jsondata){
+                                       $.getJSON(OC.filePath('contacts', 'ajax', 'loadcard.php'),{'requesttoken': requesttoken},function(jsondata){
                                                if(jsondata.status == 'success'){
                                                        $('#rightcontent').html(jsondata.data.page).ready(function() {
                                                                Contacts.UI.loadHandlers();