From 27bb3ca9c6d5d5fcd898c1a8c8f7dc8f1346ce35 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Sun, 28 Dec 2014 21:20:55 -0300 Subject: [PATCH] Bug 13496: make auth.tt use a template plugin to get the Koha version This patch makes the installer login template use the new Koha.Version template plugin to get the correct Koha version. This way we don't need to maintain the auth.tt file on each version change, and are sure screen readers tell the correct version. To test: - Create a situation where the login screen from the installer shows - Navigate the HTML code (Ctrl+u) => FAIL: "Koha 3.0 Installer" shows on the HTML code - Apply the patch - Reload the page => SUCCESS: The correct version number is shown. - Sign off :-D --- koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt index 026d022..d55c71e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt @@ -1,3 +1,4 @@ +[% USE Koha %] [% INCLUDE 'doc-head-open.inc' %] Koha › [% IF ( nopermission ) %]Access denied[% END %] @@ -9,7 +10,7 @@ [% INCLUDE 'installer-doc-head-close.inc' %] <div id="login"> -<h1><a>Koha 3.0 Installer</a></h1> +<h1><a>Koha [%- Koha.Version.release -%] installer</a></h1> [% IF ( nopermission ) %] <div id="login_error"><strong>Error: </strong>Unauthorized user <a href="/cgi-bin/koha/mainpage.pl?logout.x=1">click to log out</a></div> [% END %] -- 1.9.1