summaryrefslogtreecommitdiffstats
path: root/install/ui/entitle.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-09-19 21:04:57 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-23 15:29:26 +0000
commit060eea5f03eefb731ed6991cbdf811212e730b24 (patch)
tree4338148e6d188c0fced63078a26db322062c1619 /install/ui/entitle.js
parentad37727150abecb19a55fe7ae18bccb3a63052b9 (diff)
downloadfreeipa-060eea5f03eefb731ed6991cbdf811212e730b24.tar.gz
freeipa-060eea5f03eefb731ed6991cbdf811212e730b24.tar.xz
freeipa-060eea5f03eefb731ed6991cbdf811212e730b24.zip
Fixed problem displaying special characters.
Some jQuery objects in various locations have been modified to use text() to show values obtained from the server (except messages). The text() will automatically encode special characters. Ticket #1798
Diffstat (limited to 'install/ui/entitle.js')
-rw-r--r--install/ui/entitle.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/entitle.js b/install/ui/entitle.js
index 844c7ad4c..b8cff6ee2 100644
--- a/install/ui/entitle.js
+++ b/install/ui/entitle.js
@@ -509,9 +509,9 @@ IPA.entitle.certificate_column = function(spec) {
var certificate = record[that.name];
$('<a/>', {
- 'href': '#download',
- 'html': IPA.messages.objects.entitle.download,
- 'click': function() {
+ href: '#download',
+ html: IPA.messages.objects.entitle.download,
+ click: function() {
var dialog = IPA.cert.download_dialog({
title: IPA.messages.objects.entitle.download_certificate,
certificate: certificate,