From 43c16593ae8655c067b6f8bff606a68c080a11c5 Mon Sep 17 00:00:00 2001
From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Date: Mon, 28 Sep 2015 08:38:26 +0200
Subject: [PATCH] Bug 14904: Resolve warning from tt_valid.t
Content-Type: text/plain; charset=utf-8

Test tt_valid.t warns that opac-retrieve-file.tt has no id and class
attribute on the body tag.
This patch adds them to clear the warning.

Test plan:
Apply patch and run xt/tt_valid.t.
---
 koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-retrieve-file.tt |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-retrieve-file.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-retrieve-file.tt
index 581d9ea..8bc9060 100644
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-retrieve-file.tt
+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-retrieve-file.tt
@@ -1,6 +1,6 @@
 [%# This template is called only for a very simple error message %]
 <html>
-<body>
+<body id="opac-retrieve-file" class="scrollto">
 Your search [% IF hash %]for [% hash %][% END %] was not successful.
 </body>
 </html>
-- 
1.7.10.4