summaryrefslogtreecommitdiffstats
path: root/install/ui/src
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-08-22 13:48:44 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-08-26 13:05:36 +0200
commit34342b9a972a3a454b979dc64d0a510c5af24894 (patch)
tree697d2cb778db5b5643cc715548c09a08c9ae7d0a /install/ui/src
parentedf92f765099366ae4e0b28e2aeaa54b7af92712 (diff)
downloadfreeipa.git-34342b9a972a3a454b979dc64d0a510c5af24894.tar.gz
freeipa.git-34342b9a972a3a454b979dc64d0a510c5af24894.tar.xz
freeipa.git-34342b9a972a3a454b979dc64d0a510c5af24894.zip
Show human-readable error name in error dialog title
Fixes RPC server's JSON encoding of exception's name. It allows to show the name in Web UI's error dialog title.
Diffstat (limited to 'install/ui/src')
-rw-r--r--install/ui/src/freeipa/ipa.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js
index 8d54b66e..0e9fdefb 100644
--- a/install/ui/src/freeipa/ipa.js
+++ b/install/ui/src/freeipa/ipa.js
@@ -733,7 +733,8 @@ IPA.command = function(spec) {
} else if (data.error) {
// error_handler() calls IPA.hide_activity_icon()
error_handler.call(this, xhr, text_status, /* error_thrown */ {
- name: text.get('@i18n:errors.ipa_error', 'IPA Error')+' '+data.error.code,
+ name: text.get('@i18n:errors.ipa_error', 'IPA Error') + ' ' +
+ data.error.code + ': ' + data.error.name,
code: data.error.code,
message: data.error.message,
data: data