diff options
author | Adam Young <ayoung@redhat.com> | 2010-08-30 09:57:52 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-08-30 10:03:03 -0400 |
commit | 786f2a9141d606489a50c846b931f6c3fdbff55c (patch) | |
tree | 34eac5a6c9e3155d044b92712550b78413141da7 | |
parent | 4b6b710ba6ce75ffcb9ced43acee0d55adb6163c (diff) | |
download | freeipa-786f2a9141d606489a50c846b931f6c3fdbff55c.tar.gz freeipa-786f2a9141d606489a50c846b931f6c3fdbff55c.tar.xz freeipa-786f2a9141d606489a50c846b931f6c3fdbff55c.zip |
Fix Enroll
Enroll was broken due to the missing obj.
-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 826ac1d1f..72b106925 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 ); + enrollUserInGroupFailure,group ); }else{ location.hash="tab=user&facet=group&pkey="+qs.pkey; } |