summaryrefslogtreecommitdiffstats
path: root/pki/dogtag/ca-ui/shared
diff options
context:
space:
mode:
authorawnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2009-08-05 01:48:34 +0000
committerawnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2009-08-05 01:48:34 +0000
commit43300ebab39d707d48c9a273210e3f2d047fd234 (patch)
treef367c6c1052b61319f9aa34c4e2db15f9af48509 /pki/dogtag/ca-ui/shared
parentc7f00b45d40f661ee844dbbb7161016206c7006f (diff)
downloadpki-43300ebab39d707d48c9a273210e3f2d047fd234.tar.gz
pki-43300ebab39d707d48c9a273210e3f2d047fd234.tar.xz
pki-43300ebab39d707d48c9a273210e3f2d047fd234.zip
Fixed bugzilla bug #514093.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@715 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/dogtag/ca-ui/shared')
-rw-r--r--pki/dogtag/ca-ui/shared/webapps/ca/ee/ca/queryCert.template8
1 files changed, 7 insertions, 1 deletions
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];
}