Patch #3253811 Cannot add a new user
This commit is contained in:

committed by
Marc Delisle

parent
a47d29221c
commit
38ca2f2d8a
@@ -174,7 +174,7 @@ $(document).ready(function() {
|
||||
/**
|
||||
* @var $form stores reference to current form
|
||||
*/
|
||||
var $form = $(this).find("#addUsersForm");
|
||||
var $form = $(this).find("form[name=usersForm]").last();
|
||||
|
||||
if( ! checkAddUser($form.get(0)) ) {
|
||||
PMA_ajaxShowMessage(PMA_messages['strFormEmpty']);
|
||||
@@ -211,7 +211,7 @@ $(document).ready(function() {
|
||||
.prepend(data)
|
||||
.find("#fieldset_add_user_footer").hide() //showing the "Go" and "Create User" buttons together will confuse the user
|
||||
.end()
|
||||
.find("#addUsersForm").append('<input type="hidden" name="ajax_request" value="true" />')
|
||||
.find("form[name=usersForm]").append('<input type="hidden" name="ajax_request" value="true" />')
|
||||
.end()
|
||||
.dialog({
|
||||
title: PMA_messages['strAddNewUser'],
|
||||
|
Reference in New Issue
Block a user