summaryrefslogtreecommitdiffstats
path: root/install/ui/hbac.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-05-20 11:27:58 -0500
committerAdam Young <ayoung@redhat.com>2011-05-20 14:01:02 -0400
commit0238cb845a724969990be3c8a45ef572296b5de1 (patch)
tree0699b9c06681fcce5afdd413b0daac7df4544841 /install/ui/hbac.js
parent887f53cd67d91418d1e64ad1d1b699d26df09f17 (diff)
downloadfreeipa-0238cb845a724969990be3c8a45ef572296b5de1.tar.gz
freeipa-0238cb845a724969990be3c8a45ef572296b5de1.tar.xz
freeipa-0238cb845a724969990be3c8a45ef572296b5de1.zip
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
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r--install/ui/hbac.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js
index 22c0c7e1a..93ff7fbd5 100644
--- a/install/ui/hbac.js
+++ b/install/ui/hbac.js
@@ -999,7 +999,6 @@ IPA.hbacrule_accesstime_widget = function (spec) {
function on_error(xhr, text_status, error_thrown) {
var summary = $('span[name=summary]', that.table.tfoot).empty();
summary.append('<p>Error: '+error_thrown.name+'</p>');
- summary.append('<p>'+error_thrown.title+'</p>');
summary.append('<p>'+error_thrown.message+'</p>');
}