]> git.mxchange.org Git - friendica.git/blobdiff - js/main.js
CSRF-Protection in the group-related form (creating, renaming and dropping a group...
[friendica.git] / js / main.js
index c20455ad14bd24f19cea4955168bd4b1b466becf..babd2a1c389cc985dee231d0587e0e0d100ac477 100755 (executable)
         return a.join('');  
     }  
 
-       function groupChangeMember(gid,cid) {
+       function groupChangeMember(gid, cid, sec_token) {
                $('body .fakelink').css('cursor', 'wait');
-               $.get('group/' + gid + '/' + cid, function(data) {
+               $.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) {
                                $('#group-update-wrapper').html(data);
                                $('body .fakelink').css('cursor', 'auto');                              
                });