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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-3 / +2 lines)
Lines 1-4 Link Here
1
[% USE EncodeUTF8 %]
2
[% USE AuthorisedValues %]
1
[% USE AuthorisedValues %]
3
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Administration &rsaquo; Item types [% IF ( add_form ) %]&rsaquo;
3
<title>Koha &rsaquo; Administration &rsaquo; Item types [% IF ( add_form ) %]&rsaquo;
Lines 201-209 Item types administration Link Here
201
              <option value=""></option>
200
              <option value=""></option>
202
              [% FOREACH a IN AuthorisedValues.Get('SIP_MEDIA_TYPE', sip_media_type ) %]
201
              [% FOREACH a IN AuthorisedValues.Get('SIP_MEDIA_TYPE', sip_media_type ) %]
203
                  [% IF a.selected %]
202
                  [% IF a.selected %]
204
                      <option value="[% a.authorised_value %]" selected="selected">[% a.lib | $EncodeUTF8 %]</option>
203
                      <option value="[% a.authorised_value %]" selected="selected">[% a.lib %]</option>
205
                  [% ELSE %]
204
                  [% ELSE %]
206
                      <option value="[% a.authorised_value %]">[% a.lib | $EncodeUTF8  %]</option>
205
                      <option value="[% a.authorised_value %]">[% a.lib %]</option>
207
                  [% END %]
206
                  [% END %]
208
              [% END %]
207
              [% END %]
209
          </select>
208
          </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt (-2 / +1 lines)
Lines 55-61 Link Here
55
55
56
                            [% ELSIF error == "too_soon" %]
56
                            [% ELSIF error == "too_soon" %]
57
57
58
                                <p>[% item.biblio.title | $EncodeUTF8 %] [% item.biblioitem.subtitle | $EncodeUTF8 %] ( [% item.barcode %] ) cannot be renewed before [% soonestrenewdate | $KohaDates %]. </p>
58
                                <p>[% item.biblio.title %] [% item.biblioitem.subtitle %] ( [% item.barcode %] ) cannot be renewed before [% soonestrenewdate | $KohaDates %]. </p>
59
59
60
                                [% IF Koha.Preference('AllowRenewalLimitOverride') %]
60
                                [% IF Koha.Preference('AllowRenewalLimitOverride') %]
61
                                    <form method="post" action="/cgi-bin/koha/circ/renew.pl">
61
                                    <form method="post" action="/cgi-bin/koha/circ/renew.pl">
62
- 

Return to bug 11944