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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt (-1 / +5 lines)
Lines 80-86 Link Here
80
                    [% IF ( CHUNK.type_text ) %]
80
                    [% IF ( CHUNK.type_text ) %]
81
                    [% CHUNK.contents | $raw %]
81
                    [% CHUNK.contents | $raw %]
82
                    [% ELSIF ( CHUNK.type_input ) %]
82
                    [% ELSIF ( CHUNK.type_input ) %]
83
                    <input type="[%IF CHUNK.input_type %][% CHUNK.input_type | html %][% ELSE %]text[% END %]" name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "short" | html %]" value="[% CHUNK.value | html %]" autocomplete="off" /> [% IF ( CHUNK.dateinput ) %]<span class="hint">[% INCLUDE 'date-format.inc' %]</span>[% END %]
83
                        [% IF CHUNK.name == 'UsageStatsGeolocation' %]
84
                            <input type="[%IF CHUNK.input_type %][% CHUNK.input_type | html %][% ELSE %]text[% END %]" name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "short" | html %]" value="[% CHUNK.value | html %]" autocomplete="off" readonly="readonly" size="40" style="width: auto;"/> [% IF ( CHUNK.dateinput ) %]<span class="hint">[% INCLUDE 'date-format.inc' %]</span>[% END %]
85
                        [% ELSE %]
86
                            <input type="[%IF CHUNK.input_type %][% CHUNK.input_type | html %][% ELSE %]text[% END %]" name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "short" | html %]" value="[% CHUNK.value | html %]" autocomplete="off" /> [% IF ( CHUNK.dateinput ) %]<span class="hint">[% INCLUDE 'date-format.inc' %]</span>[% END %]
87
                        [% END %]
84
                    [% ELSIF ( CHUNK.type_select ) %]
88
                    [% ELSIF ( CHUNK.type_select ) %]
85
                    <select name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "choice" | html %]">
89
                    <select name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "choice" | html %]">
86
                        [% FOREACH CHOICE IN CHUNK.CHOICES.sort('value') %]
90
                        [% FOREACH CHOICE IN CHUNK.CHOICES.sort('value') %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +2 lines)
Lines 192-197 Administration: Link Here
192
            - ". Website where usage statistics are published: <a href=\"http://hea.koha-community.org\">Hea Koha community website</a>."
192
            - ". Website where usage statistics are published: <a href=\"http://hea.koha-community.org\">Hea Koha community website</a>."
193
            - "<br><strong>NOTE:</strong> The other \"UsageStats\" preferences have no effect if this preference is set to \"No\"."
193
            - "<br><strong>NOTE:</strong> The other \"UsageStats\" preferences have no effect if this preference is set to \"No\"."
194
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/share_usage_with_koha_community.pl</code> cronjob. Ask your system administrator to schedule it."
194
            - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/share_usage_with_koha_community.pl</code> cronjob. Ask your system administrator to schedule it."
195
            - "<br><strong>NOTE:</strong> You should use the <a href=\"/cgi-bin/koha/admin/usage_statistics.pl\">dedicated admin configuration page</a> to edit the preference related to Hea."
195
        -
196
        -
196
            - "Use the following library name to be shown on the Hea Community website: "
197
            - "Use the following library name to be shown on the Hea Community website: "
197
            - pref: UsageStatsLibraryName
198
            - pref: UsageStatsLibraryName
Lines 432-437 Administration: Link Here
432
            - "Geolocation of the main library: "
433
            - "Geolocation of the main library: "
433
            - pref: UsageStatsGeolocation
434
            - pref: UsageStatsGeolocation
434
            - "<br><strong>NOTE:</strong> This value has no effect if the UsageStats system preference is set to \"Don't share\"."
435
            - "<br><strong>NOTE:</strong> This value has no effect if the UsageStats system preference is set to \"Don't share\"."
436
            - "<br><strong>NOTE:</strong> You must use the <a href=\"/cgi-bin/koha/admin/usage_statistics.pl\">dedicated admin configuration page</a> to edit this preference."
435
    Search Engine:
437
    Search Engine:
436
        -
438
        -
437
            - "Use following search engine: "
439
            - "Use following search engine: "
438
- 

Return to bug 24682