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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt (-4 / +3 lines)
Lines 42-50 Link Here
42
            [% SET subtype = st.0 %]
42
            [% SET subtype = st.0 %]
43
            [% SET value = st.1 %]
43
            [% SET value = st.1 %]
44
            [% IF subscription.$subtype %]
44
            [% IF subscription.$subtype %]
45
                <option value="[% value %]" selected="selected">
45
                <option value="[% value | html %]" selected="selected">
46
            [% ELSE %]
46
            [% ELSE %]
47
                <option value="[% value %]">
47
                <option value="[% value | html %]">
48
            [% END %]
48
            [% END %]
49
            [% SWITCH subtype %]
49
            [% SWITCH subtype %]
50
                [% CASE 'numberlength'%]issues
50
                [% CASE 'numberlength'%]issues
Lines 54-60 Link Here
54
            </option>
54
            </option>
55
        [% END %]
55
        [% END %]
56
    </select>
56
    </select>
57
    <input type="text" name="sublength" id="sublength" size="3" value="[% subscription.numberlength || subscription.weeklength || subscription.monthlength %]" />(enter amount in numerals)
57
    <input type="text" name="sublength" id="sublength" size="3" value="[% subscription.numberlength || subscription.weeklength || subscription.monthlength | html %]" />(enter amount in numerals)
58
    <input type="hidden" name="issuelengthcount">
58
    <input type="hidden" name="issuelengthcount">
59
    </li>
59
    </li>
60
60
61
- 

Return to bug 7046