View | Details | Raw Unified | Return to bug 30543
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc (-1 / +8 lines)
Lines 3-12 Link Here
3
3
4
[% USE Koha %]
4
[% USE Koha %]
5
[% USE raw %]
5
[% USE raw %]
6
[% USE Dumper( Indent=1, SortKeys=1 ) %]
7
8
[% IF Koha.Preference('DumpSearchQueryTemplate') %]
9
    <!-- SearchQuery
10
        [% Dumper.dump( search_query ) | $raw %]
11
    -->
12
[% END %]
13
6
[% IF Koha.Preference('DumpTemplateVarsIntranet') %]
14
[% IF Koha.Preference('DumpTemplateVarsIntranet') %]
7
    [% TRY %]
15
    [% TRY %]
8
        [% USE Stash %]
16
        [% USE Stash %]
9
        [% USE Dumper( Indent=1, SortKeys=1 ) %]
10
        <!--
17
        <!--
11
        [% FILTER replace('<!--', '<!- -') %]
18
        [% FILTER replace('<!--', '<!- -') %]
12
            [% FILTER replace('-->', '- ->') %]
19
            [% FILTER replace('-->', '- ->') %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/logs.pref (-1 / +1 lines)
Lines 133-136 Logging: Link Here
133
              choices:
133
              choices:
134
                  1: Do
134
                  1: Do
135
                  0: "Don't"
135
                  0: "Don't"
136
            - dump search query as a template parameter, requires <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=DumpTemplateVars">DumpTemplateVars</a>[interface] to be visible.
136
            - dump search query to a comment in the HTML source for the OPAC and staff interface.
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc (-2 / +8 lines)
Lines 3-12 Link Here
3
3
4
[% USE raw %]
4
[% USE raw %]
5
[% USE Koha %]
5
[% USE Koha %]
6
[% USE Dumper( Indent=1, SortKeys=1 ) %]
7
8
[% IF Koha.Preference('DumpSearchQueryTemplate') %]
9
    <!-- SearchQuery
10
        [% Dumper.dump( search_query ) | $raw %]
11
    -->
12
[% END %]
13
6
[% IF Koha.Preference('DumpTemplateVarsOpac') %]
14
[% IF Koha.Preference('DumpTemplateVarsOpac') %]
7
    [% TRY %]
15
    [% TRY %]
8
        [% USE Stash %]
16
        [% USE Stash %]
9
        [% USE Dumper ( Indent=1, SortKeys=1 ) %]
10
        <!--
17
        <!--
11
        [% FILTER replace('<!--', '<!- -') %]
18
        [% FILTER replace('<!--', '<!- -') %]
12
            [% FILTER replace('-->', '- ->') %]
19
            [% FILTER replace('-->', '- ->') %]
13
- 

Return to bug 30543