From 0238cb845a724969990be3c8a45ef572296b5de1 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 20 May 2011 11:27:58 -0500 Subject: Fixed Ajax error handling. The IPA.command has been modified not to insert a title into the error object thrown by Ajax operation because the object could be immutable. Ticket #1240 --- install/ui/associate.js | 1 - 1 file changed, 1 deletion(-) (limited to 'install/ui/associate.js') diff --git a/install/ui/associate.js b/install/ui/associate.js index 6f003418..4d9e728d 100644 --- a/install/ui/associate.js +++ b/install/ui/associate.js @@ -1021,7 +1021,6 @@ IPA.association_facet = function (spec) { function on_error(xhr, text_status, error_thrown) { var summary = $('span[name=summary]', that.table.tfoot).empty(); summary.append('

Error: '+error_thrown.name+'

'); - summary.append('

'+error_thrown.title+'

'); summary.append('

'+error_thrown.message+'

'); } -- cgit