diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-05-20 11:27:58 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-05-20 14:01:02 -0400 |
commit | 0238cb845a724969990be3c8a45ef572296b5de1 (patch) | |
tree | 0699b9c06681fcce5afdd413b0daac7df4544841 /install/ui/hbac.js | |
parent | 887f53cd67d91418d1e64ad1d1b699d26df09f17 (diff) | |
download | freeipa.git-0238cb845a724969990be3c8a45ef572296b5de1.tar.gz freeipa.git-0238cb845a724969990be3c8a45ef572296b5de1.tar.xz freeipa.git-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.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js index 22c0c7e1..93ff7fbd 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>'); } |