From 43300ebab39d707d48c9a273210e3f2d047fd234 Mon Sep 17 00:00:00 2001 From: awnuk Date: Wed, 5 Aug 2009 01:48:34 +0000 Subject: Fixed bugzilla bug #514093. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@715 c9f7a03b-bd48-0410-a16d-cbbf54688b0b --- pki/dogtag/ca-ui/shared/webapps/ca/ee/ca/queryCert.template | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pki/dogtag/ca-ui/shared') diff --git a/pki/dogtag/ca-ui/shared/webapps/ca/ee/ca/queryCert.template b/pki/dogtag/ca-ui/shared/webapps/ca/ee/ca/queryCert.template index 9dd361ec0..d115a1e1f 100644 --- a/pki/dogtag/ca-ui/shared/webapps/ca/ee/ca/queryCert.template +++ b/pki/dogtag/ca-ui/shared/webapps/ca/ee/ca/queryCert.template @@ -176,7 +176,13 @@ function getRevocationReason(revocationReason) "Affiliation changed", "Certificate superceded", "Cessation of operation", - "Certificate is on hold"); + "Certificate is on hold", + "Unspecified", // value 7 is not used + "Remove from CRL", + "Privilege withdrawn", + "AA key compromise"); + if (revocationReason < 0 || revocationReason >= reasons.length) + revocationReason = 0; return reasons[revocationReason]; } -- cgit