]> WPIA git - gigi.git/commitdiff
UPD: patch error messages for certificate issue form.
authorFelix Dörre <felix@dogcraft.de>
Fri, 14 Nov 2014 18:59:00 +0000 (19:59 +0100)
committerJanis Streib <janis@dogcraft.de>
Wed, 31 Dec 2014 01:36:10 +0000 (02:36 +0100)
src/org/cacert/gigi/pages/account/certs/CertificateIssueForm.java

index 8076afe90ecbdf7cbcb5d525b7fad15479192db2..d07b65d46842b268643e76a321b42663d5b68e08 100644 (file)
@@ -290,7 +290,7 @@ public class CertificateIssueForm extends Form {
                     SANs = filteredSANs;
                     if ( !u.isValidName(CN) && !server && !CN.equals(DEFAULT_CN)) {
                         CN = DEFAULT_CN;
-                        outputError(out, req, "The real name entered cannot be verified with your account.");
+                        outputError(out, req, "The name entered, does not match the details in your account. You cannot issue certificates with this name. Enter a name that matches the one that has been assured in your account.");
                     }
 
                     HashMap<String, String> subject = new HashMap<>();
@@ -301,7 +301,7 @@ public class CertificateIssueForm extends Form {
                         }
                         if (CN.equals("")) {
                             CN = "";
-                            outputError(out, req, "No real name is included in this certificate.");
+                            outputError(out, req, "No real name is included in this certificate. The real name, you entered will be ignored.");
                         }
                     } else {
                         subject.put("CN", CN);