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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +1 lines)
Lines 7146-7152 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
7146
        INSERT INTO systempreferences (variable,value,explanation,options,type)
7146
        INSERT INTO systempreferences (variable,value,explanation,options,type)
7147
        VALUES (
7147
        VALUES (
7148
            'BlockExpiredPatronOpacActions',
7148
            'BlockExpiredPatronOpacActions',
7149
            'yes',
7149
            '1',
7150
            'Set whether an expired patron can perform opac actions such as placing holds or renew books, can be overridden on a per patron-type basis',
7150
            'Set whether an expired patron can perform opac actions such as placing holds or renew books, can be overridden on a per patron-type basis',
7151
            NULL,
7151
            NULL,
7152
            'YesNo'
7152
            'YesNo'
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-1 / +1 lines)
Lines 514-520 OPAC: Link Here
514
            - pref: BlockExpiredPatronOpacActions
514
            - pref: BlockExpiredPatronOpacActions
515
              choices:
515
              choices:
516
                yes: "Block"
516
                yes: "Block"
517
                no: "Don't Block"
517
                no: "Don't block"
518
            - expired patrons from opac actions such as placing a hold or renew, the setting for a patron category takes priority over this
518
            - expired patrons from opac actions such as placing a hold or renew, the setting for a patron category takes priority over this
519
519
520
    Privacy:
520
    Privacy:
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt (-1 / +1 lines)
Lines 231-237 Link Here
231
              <div id="bad_data" class="dialog alert">ERROR: Internal error: incomplete hold request.</div>
231
              <div id="bad_data" class="dialog alert">ERROR: Internal error: incomplete hold request.</div>
232
            [% END %]
232
            [% END %]
233
            [% IF ( expired_patron ) %]
233
            [% IF ( expired_patron ) %]
234
                <div id="expired_patron" class="dialog alert"><p><strong>Sorry</strong>, you cannot place holds because your library card has expired.</p><p>Please contact your librarian if you wish to renew your card</p></div>
234
                <div id="expired_patron" class="dialog alert"><p><strong>Sorry</strong>, you cannot place holds because your library card has expired.</p><p>Please contact your librarian if you wish to renew your card.</p></div>
235
            [% END %]
235
            [% END %]
236
          [% ELSE %]
236
          [% ELSE %]
237
            [% IF ( none_available ) %]
237
            [% IF ( none_available ) %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt (-2 / +1 lines)
Lines 100-106 var MSG_CONFIRM_RESUME_HOLDS = _("Are you sure you want to resume all suspended Link Here
100
100
101
        [% IF ( BORROWER_INF.warnexpired ) %]
101
        [% IF ( BORROWER_INF.warnexpired ) %]
102
        <div class="dialog alert" id="warnexpired">
102
        <div class="dialog alert" id="warnexpired">
103
            <strong>Please note:</strong><span> You account has expired as of [% BORROWER_INF.warnexpired | $KohaDates %]. Please contact the library if you wish to renew your account.</span>
103
            <strong>Please note: </strong><span>Your account has expired as of [% BORROWER_INF.warnexpired | $KohaDates %]. Please contact the library if you wish to renew your account.</span>
104
        </div>
104
        </div>
105
        [% END %]
105
        [% END %]
106
106
107
- 

Return to bug 6739