From bfdd08f74e19b37eb37c3147d484dea36ac13a92 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 9 Oct 2014 14:32:59 +0200 Subject: [PATCH] Bug 13051: And remember, usernames are not case sensitive opac-auth contains the following statement: You entered an incorrect username or password. Please try again! And remember, usernames and passwords are case sensitive. Obviously, this is not completely true. The username can be entered in lowercase, uppercase, any mixed case. This patch simply adjusts this string. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt index e8f0503985..ca492d0952 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt @@ -53,7 +53,7 @@ [% IF ( invalid_username_or_password ) %]
-

You entered an incorrect username or password. Please try again! And remember, usernames and passwords are case sensitive.

+

You entered an incorrect username or password. Please try again! And remember, passwords are case sensitive.

[% END %] -- 2.39.5