Errors from the Ajax create table dialog where not displayed

This commit is contained in:
Marc Delisle
2011-02-08 17:36:05 -05:00
parent 677e5a5da7
commit 589d918ee7
3 changed files with 13 additions and 8 deletions

View File

@@ -1743,6 +1743,7 @@ $(document).ready(function() {
//User wants to submit the form
$.post($form.attr('action'), $form.serialize() + "&do_save_data=" + $(this).val(), function(data) {
if(data.success == true) {
$('#properties_message').html('');
PMA_ajaxShowMessage(data.message);
$("#create_table_dialog").dialog("close").remove();
@@ -1794,7 +1795,7 @@ $(document).ready(function() {
}
}
else {
PMA_ajaxShowMessage(data.error);
$('#properties_message').html(data.error);
}
}) // end $.post()
}) // end create table form (save)