Fix to bug 1834251 by adding alt attributes to user/slink/lp1834251_kpac_images_of_text_without_alt_attributes
authorSam Link <slink@LIBPC002>
Tue, 22 Oct 2019 19:51:57 +0000 (15:51 -0400)
committerSam Link <slink@LIBPC002>
Tue, 22 Oct 2019 19:51:57 +0000 (15:51 -0400)
Open-ILS\src\templates\kpac\parts\paginate.tt2.

Signed-off-by: Sam Link <slink@LIBPC002>
Open-ILS/src/templates/kpac/parts/paginate.tt2

index 27844ee..3b3b736 100644 (file)
@@ -17,7 +17,7 @@
                 IF page > 0;
                     href = mkurl('', {page => page - 1});
                 ELSE; class = class _ ' invisible'; END %]
-            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_last.png[% ctx.cache_key %]" /></a>
+            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_last.png[% ctx.cache_key %]" alt="Last" /></a>
         </td>
 
         <!-- page X of Y -->
                     href = mkurl('', {page => page + 1});
                 ELSE; class = class _ ' invisible'; END;
             %]
-            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_next.png[% ctx.cache_key %]" /></a>
+            <a class="[% class %]" href="[% href %]"><img src="[% ctx.media_prefix %]/images/kpac/arrow_next.png[% ctx.cache_key %]" alt="Next" /></a>
         </td>
 
         <!-- Top of page -->
         [% IF showtop %]
             <td class="to_top_btn"><a href="[% mkurl('').replace('#.*', '') %]">
-                <img src="[% ctx.media_prefix %]/images/kpac/to_top_btn.png[% ctx.cache_key %]" />
+                <img src="[% ctx.media_prefix %]/images/kpac/to_top_btn.png[% ctx.cache_key %]" alt="Top" />
             </a></td>
         [% END %]
     </tr>