diff options
author | friendica <info@friendica.com> | 2012-03-18 17:57:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-18 17:57:54 -0700 |
commit | 02786d6ed0811b0d63c0e466309dfda7740e2609 (patch) | |
tree | f28947b8a85bec2c909958f9ed5f6a0c2424c348 /js | |
parent | 37f4cbd732de8af22038a06792087c30d4c67989 (diff) | |
parent | c286681158a5c766d740f66cc70d1ef95c34b92a (diff) | |
download | volse-hubzilla-02786d6ed0811b0d63c0e466309dfda7740e2609.tar.gz volse-hubzilla-02786d6ed0811b0d63c0e466309dfda7740e2609.tar.bz2 volse-hubzilla-02786d6ed0811b0d63c0e466309dfda7740e2609.zip |
Merge branch 'pull'
Diffstat (limited to 'js')
-rwxr-xr-x | js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/main.js b/js/main.js index c20455ad1..babd2a1c3 100755 --- a/js/main.js +++ b/js/main.js @@ -486,9 +486,9 @@ 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'); }); |