diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-08-12 17:40:22 +0200 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-08-12 14:44:47 -0700 |
commit | 91b8c769bd1c680b22039af52727c645d2d7bdaf (patch) | |
tree | d62f9af6691839fee9bec90b4c278faa4d5138cc | |
parent | 0637a71669d4dcc87c5245a9b226fca7438335dc (diff) | |
download | volse-hubzilla-91b8c769bd1c680b22039af52727c645d2d7bdaf.tar.gz volse-hubzilla-91b8c769bd1c680b22039af52727c645d2d7bdaf.tar.bz2 volse-hubzilla-91b8c769bd1c680b22039af52727c645d2d7bdaf.zip |
possible quickfix for multi-acl not honoring jotnets
-rw-r--r-- | view/js/acl.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index b36fa97a1..411190ac9 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -95,6 +95,12 @@ ACL.prototype.on_submit = function() { that.form_id.append("<input class='acl-field' type='hidden' name='contact_deny[]' value='"+v+"'>"); }); + var formfields = $('.profile-jot-net input').serializeArray(); + + $.each(formfields, function(i, field) { + that.form_id.append("<input class='acl-field' type='hidden' name='"+field.name+"' value='"+field.value+"'>"); + }); + }; ACL.prototype.search = function() { |