[Koha-patches] [PATCH] [SIGNED-OFF] Fix for Bug 6601 - dictionary items not adding to query

Nicole C. Engard nengard at bywatersolutions.com
Tue Jul 19 07:27:07 CEST 2011


From: Owen Leonard <oleonard at myacpl.org>

T:T variable scope error.

Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
---
 .../en/modules/reports/guided_reports_start.tt     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
index 04cfb43..0c1767b 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
@@ -392,7 +392,7 @@ canned reports and writing custom SQL reports.</p>
 [% IF ( definitions ) %]
 <fieldset><legend>Dictionary Definitions</legend><table>
 [% FOREACH definition IN definitions %]
-    <tr><td><input type="checkbox" name="definition" value="[% id %]" /> [% definition.name %]</td></tr>
+    <tr><td><input type="checkbox" name="definition" value="[% definition.id %]" /> [% definition.name %]</td></tr>
 [% END %]
 </table>
 [% END %]
-- 
1.7.2.3



More information about the Koha-patches mailing list