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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt (-1 / +1 lines)
Lines 122-128 Link Here
122
                    [% IF ( CHUNK.type_text ) %]
122
                    [% IF ( CHUNK.type_text ) %]
123
                    [% CHUNK.contents %]
123
                    [% CHUNK.contents %]
124
                    [% ELSIF ( CHUNK.type_input ) %]
124
                    [% ELSIF ( CHUNK.type_input ) %]
125
                    <input type="[%IF CHUNK.input_type %][% CHUNK.input_type %][% ELSE %]text[% END %]" name="pref_[% CHUNK.name %]" id="pref_[% CHUNK.name %]" class="preference preference-[% CHUNK.class or "short" %]" value="[% CHUNK.value %]" autocomplete="off" /> [% IF ( CHUNK.dateinput ) %]<span class="hint">[% INCLUDE 'date-format.inc' %]</span>[% END %]
125
                    <input type="[%IF CHUNK.input_type %][% CHUNK.input_type %][% ELSE %]text[% END %]" name="pref_[% CHUNK.name %]" id="pref_[% CHUNK.name %]" class="preference preference-[% CHUNK.class or "short" %]" value="[% CHUNK.value| html %]" autocomplete="off" /> [% IF ( CHUNK.dateinput ) %]<span class="hint">[% INCLUDE 'date-format.inc' %]</span>[% END %]
126
                    [% ELSIF ( CHUNK.type_select ) %]
126
                    [% ELSIF ( CHUNK.type_select ) %]
127
                    <select name="pref_[% CHUNK.name %]" id="pref_[% CHUNK.name %]" class="preference preference-[% CHUNK.class or "choice" %]">
127
                    <select name="pref_[% CHUNK.name %]" id="pref_[% CHUNK.name %]" class="preference preference-[% CHUNK.class or "choice" %]">
128
                        [% FOREACH CHOICE IN CHUNK.CHOICES.sort('value') %]
128
                        [% FOREACH CHOICE IN CHUNK.CHOICES.sort('value') %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref (-2 / +1 lines)
Lines 48-54 Acquisitions: Link Here
48
            - Upon receiving items, update their subfields if they were created when placing an order (e.g. o=5|a="foo bar").
48
            - Upon receiving items, update their subfields if they were created when placing an order (e.g. o=5|a="foo bar").
49
            - pref: AcqItemSetSubfieldsWhenReceived
49
            - pref: AcqItemSetSubfieldsWhenReceived
50
        -
50
        -
51
            - Upon cancelling a receipt, update the item's subfields if they were created when placing an order (e.g. o=5|a="bar foo"").
51
            - Upon cancelling a receipt, update the item's subfields if they were created when placing an order (e.g. o=5|a="bar foo").
52
            - pref: AcqItemSetSubfieldsWhenReceiptIsCancelled
52
            - pref: AcqItemSetSubfieldsWhenReceiptIsCancelled
53
        -
53
        -
54
            - pref: AcqEnableFiles
54
            - pref: AcqEnableFiles
55
- 

Return to bug 18727