diff options
author | Adam Young <ayoung@redhat.com> | 2010-08-30 10:13:10 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-08-30 10:14:08 -0400 |
commit | 1e9015a0a05d795b117e9980faf66bb310ec4fd8 (patch) | |
tree | 5bd0e3a70c947505627f521f0d1e716eeb8685ee | |
parent | 786f2a9141d606489a50c846b931f6c3fdbff55c (diff) | |
download | freeipa-1e9015a0a05d795b117e9980faf66bb310ec4fd8.tar.gz freeipa-1e9015a0a05d795b117e9980faf66bb310ec4fd8.tar.xz freeipa-1e9015a0a05d795b117e9980faf66bb310ec4fd8.zip |
quote obj param for group
Correction for previous comit. 'group' not group.
-rw-r--r-- | install/static/user.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/static/user.js b/install/static/user.js index 72b106925..71bf3e513 100644 --- a/install/static/user.js +++ b/install/static/user.js @@ -265,7 +265,7 @@ function enrollUserInNextGroup(){ ipa_cmd( 'add_member',args, options , enrollUserInGroupSuccess, - enrollUserInGroupFailure,group ); + enrollUserInGroupFailure,'group' ); }else{ location.hash="tab=user&facet=group&pkey="+qs.pkey; } |