From 34242abef68ae8ecfe85753ae69eec23f9fe4cef Mon Sep 17 00:00:00 2001 From: Aleisha Date: Tue, 21 Jul 2015 01:04:31 +0000 Subject: [PATCH] Bug 14579: 'You are not logged in' should link to log in page To test: 1) Go to any page on the staff client and make sure you are not logged in (ie an error page, cgi-bin/koha/errors/400.pl) 2) Try click on 'You are not logged in |' 3) Notice it is not really a link and doesn't take you anywhere 4) Apply patch 5) Refresh page 6) Click on what now says 'Log in |' 7) Confirm that you are redirected to the intranet log in page --- koha-tmpl/intranet-tmpl/prog/en/includes/header.inc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc index e4caee8..89517af 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -89,10 +89,13 @@
  • Log out
  • + [% ELSE %] - You are not logged in | - [% END %] - +
  • + Log in | +
  • + [% END %] +
  • Help
  • -- 1.7.10.4