@@ -, +, @@ --- .../intranet-tmpl/prog/en/includes/reports-toolbar.inc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc @@ -50,11 +50,22 @@ [% BLOCK params %] [% FOREACH param IN sql_params %]&sql_params=[% param %][% END %] [% END %] + [% BLOCK separator_text %] + [% SWITCH Koha.Preference('delimiter') %] + [% CASE '#' %]Pound (#) separated text + [% CASE ',' %]Comma separated text + [% CASE '/' %]Slash separated text + [% CASE ';' %]Semicolon separated text + [% CASE '\\' %]Backslash separated text + [% CASE 'tabulation' %]Tab separated text + [% END %] + [% END %] +
--