summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-10-17 10:14:20 +0200
committerPetr Vobornik <pvoborni@redhat.com>2012-10-24 09:18:50 +0200
commit1f81fe68aba37ef5992920d43e337aca197a6022 (patch)
treee2a3c65ef8d1499e15059c04a1867a155b89d1ac
parent00b34a9bf92ba737de0210520105689ebcdfb3ea (diff)
downloadfreeipa.git-1f81fe68aba37ef5992920d43e337aca197a6022.tar.gz
freeipa.git-1f81fe68aba37ef5992920d43e337aca197a6022.tar.xz
freeipa.git-1f81fe68aba37ef5992920d43e337aca197a6022.zip
Fixed incorrect link to browser config after session expiration
Fixed typo in message placeholder. https://fedorahosted.org/freeipa/ticket/3187
-rw-r--r--install/ui/test/data/ipa_init.json2
-rw-r--r--ipalib/plugins/internal.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json
index c9bf2a27..2b95c91d 100644
--- a/install/ui/test/data/ipa_init.json
+++ b/install/ui/test/data/ipa_init.json
@@ -134,7 +134,7 @@
"login": {
"form_auth": "To login with username and password, enter them in the fields below then click Login.",
"header": "Logged In As",
- "krb_auth_msg": "To login with Kerberos, please make sure you have valid tickets (obtainable via kinit) and <a href='http://${host]/ipa/config/unauthorized.html'>configured</a> the browser correctly, then click Login.",
+ "krb_auth_msg": "To login with Kerberos, please make sure you have valid tickets (obtainable via kinit) and <a href='http://${host}/ipa/config/unauthorized.html'>configured</a> the browser correctly, then click Login.",
"login": "Login",
"logout": "Logout",
"logout_error": "Logout error",
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py
index 0be9f435..6195ddd9 100644
--- a/ipalib/plugins/internal.py
+++ b/ipalib/plugins/internal.py
@@ -269,7 +269,7 @@ class i18n_messages(Command):
"login": {
"form_auth": _("To login with username and password, enter them in the fields below then click Login."),
"header": _("Logged In As"),
- "krb_auth_msg": _("To login with Kerberos, please make sure you have valid tickets (obtainable via kinit) and <a href='http://${host]/ipa/config/unauthorized.html'>configured</a> the browser correctly, then click Login."),
+ "krb_auth_msg": _("To login with Kerberos, please make sure you have valid tickets (obtainable via kinit) and <a href='http://${host}/ipa/config/unauthorized.html'>configured</a> the browser correctly, then click Login."),
"login": _("Login"),
"logout": _("Logout"),
"logout_error": _("Logout error"),