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:
parent
4d7df951f3
commit
bf8a746cd2
1 changed files with 3 additions and 3 deletions
|
@ -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 %]&phase=Run%20this%20report&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 %]&phase=Run%20this%20report&template=[% tmpl.id | html %][% PROCESS params %]">
|
||||
[% tmpl.name | html %]
|
||||
</a>
|
||||
</li>
|
||||
[% END %]
|
||||
|
|
Loading…
Reference in a new issue