aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-18 17:57:54 -0700
committerfriendica <info@friendica.com>2012-03-18 17:57:54 -0700
commit02786d6ed0811b0d63c0e466309dfda7740e2609 (patch)
treef28947b8a85bec2c909958f9ed5f6a0c2424c348 /js
parent37f4cbd732de8af22038a06792087c30d4c67989 (diff)
parentc286681158a5c766d740f66cc70d1ef95c34b92a (diff)
downloadvolse-hubzilla-02786d6ed0811b0d63c0e466309dfda7740e2609.tar.gz
volse-hubzilla-02786d6ed0811b0d63c0e466309dfda7740e2609.tar.bz2
volse-hubzilla-02786d6ed0811b0d63c0e466309dfda7740e2609.zip
Merge branch 'pull'
Diffstat (limited to 'js')
-rwxr-xr-xjs/main.js4
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');
});