Bug 36158: Update t iterator variable

It seems like its causing some sort of conflict with t('Hide SQL code') further down below in the code, but I'm not sure why.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit ed4fb21e2c)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
Pedro Amorim 2024-02-23 15:15:08 -01:00 committed by Fridolin Somers
parent 4d7df951f3
commit bf8a746cd2

View file

@ -69,10 +69,10 @@
<i class="fa fa-code"></i> Run with template <span class="caret"></span>
</button>
<ul class="dropdown-menu">
[% FOREACH t IN templates %]
[% FOREACH tmpl IN templates %]
<li>
<a id="runreport" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | html %]&amp;phase=Run%20this%20report&amp;template=[% t.id | html %][% PROCESS params %]">
[% t.name | html %]
<a id="runreport" class="btn btn-default" href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% id | html %]&amp;phase=Run%20this%20report&amp;template=[% tmpl.id | html %][% PROCESS params %]">
[% tmpl.name | html %]
</a>
</li>
[% END %]