@@ -, +, @@ starting with [%% in translation for itemsearch.tt - Verify that in itemsearch.tt no tt directives are splitted by new lines (search for [% INCLUDE ) - Verify that itemsearch.tt works as before --- .../prog/en/modules/catalogue/itemsearch.tt | 36 ++++------------------ 1 file changed, 6 insertions(+), 30 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt @@ -358,41 +358,17 @@
- [% INCLUDE form_field_select - name="homebranch" - options = branches - empty_option = "All libraries" - %] - [% INCLUDE form_field_select - name="holdingbranch" - options = branches - empty_option = "All libraries" - %] + [% INCLUDE form_field_select name="homebranch" options = branches empty_option = "All libraries" %] + [% INCLUDE form_field_select name="holdingbranch" options = branche empty_option = "All libraries" %] [% IF locations.size %] - [% INCLUDE form_field_select - name="location" - options = locations - empty_option = "All locations" - %] + [% INCLUDE form_field_select name="location" options = locations empty_option = "All locations" %] [% END %]
- [% INCLUDE form_field_select - name="itype" - options = itemtypes - empty_option = "All item types" - %] - [% INCLUDE form_field_select - name="ccode" - options = ccodes - empty_option = "All collection codes" - %] + [% INCLUDE form_field_select name="itype" options = itemtypes empty_option = "All item types" %] + [% INCLUDE form_field_select name="ccode" options = ccodes empty_option = "All collection codes" %] [% IF notforloans.size %] - [% INCLUDE form_field_select - name="notforloan" - options = notforloans - empty_option = "All statuses" - %] + [% INCLUDE form_field_select name="notforloan" options = notforloans empty_option = "All statuses" %] [% END %]
--