diff options
author | INOPIAE <inopiae@cacert.org> | 2015-07-28 23:44:51 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2015-07-29 19:27:43 +0200 |
commit | 9085fb415d2252657d6d3151ee00b1d96fde8abb (patch) | |
tree | 262ba10d16fdfa977f6543ab5a94762fd203fe08 | |
parent | 345eb2e771f6475e243f406fe37c41933a520c11 (diff) | |
download | cacert-devel-9085fb415d2252657d6d3151ee00b1d96fde8abb.tar.gz cacert-devel-9085fb415d2252657d6d3151ee00b1d96fde8abb.tar.xz cacert-devel-9085fb415d2252657d6d3151ee00b1d96fde8abb.zip |
bug 1394: applied text changes according to bug descriptionbug-1394
-rw-r--r-- | includes/account.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/account.php b/includes/account.php index 6dacf2d..72db509 100644 --- a/includes/account.php +++ b/includes/account.php @@ -116,7 +116,8 @@ function buildSubjectFromSession() { if(strstr($_REQUEST['newemail'], "xn--") && $_SESSION['profile']['codesign'] <= 0) { showheader(_("My CAcert.org Account!")); - echo _("Due to the possibility for punycode domain exploits we currently do not allow any certificates to sign punycode domains or email addresses."); + echo _("Due to the possibility for punycode domain exploits we currently only offer the use of IDN domains if your account has the code signing flag.") . "\n"; + printf(_("More information can be found %sin our wiki%s."), '<a href="//wiki.cacert.org/FAQ/Privilege">', '</a>'); showfooter(); exit; } @@ -541,7 +542,8 @@ function buildSubjectFromSession() { if(strstr($newdomain, "xn--") && $_SESSION['profile']['codesign'] <= 0) { showheader(_("My CAcert.org Account!")); - echo _("Due to the possibility for punycode domain exploits we currently do not allow any certificates to sign punycode domains or email addresses."); + echo _("Due to the possibility for punycode domain exploits we currently only offer the use of IDN domains if your account has the code signing flag.") . "\n"; + printf(_("More information can be found %sin our wiki%s."),'<a href="//wiki.cacert.org/FAQ/Privilege">', '</a>'); showfooter(); exit; } |