From 4222b527bda65ada7b7f9c240506d316c49bbe94 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi <tomascohen@gmail.com> Date: Mon, 16 Dec 2013 10:47:16 -0300 Subject: [PATCH] [PASSED QA] Bug 11400: Show "Log in as a different user" in the error message instead of the "Logout" button Bug 11146 introduced a way to go back, and have a logout link for the "Not enough permissions" message page. I belive the logout button is redundant. And also "Log in as a different user" tells the user more about its options on the scenario. Simple and disputable usability/string change. Regards To+ Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> --- koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt index 5f97758..25e48c1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt @@ -19,10 +19,10 @@ <div id="login_error"> <strong>Error:</strong> You do not have permission to access this page. + <p>Log in as a different user.</p> </div> <div id="onerror_actions"> <a href="javascript:window.history.back()" class="button">Previous page</a> - <a href="/cgi-bin/koha/mainpage.pl?logout.x=1" class="button">Log out</a> </div> [% END %] -- 1.7.2.5