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 526-532 OPAC: Link Here
526
            - pref: BlockExpiredPatronOpacActions
526
            - pref: BlockExpiredPatronOpacActions
527
              choices:
527
              choices:
528
                yes: "Block"
528
                yes: "Block"
529
                no: "Don't Block"
529
                no: "Don't block"
530
            - expired patrons from opac actions such as placing a hold or renew, the setting for a patron category takes priority over this
530
            - expired patrons from opac actions such as placing a hold or renew, the setting for a patron category takes priority over this
531
531
532
    Privacy:
532
    Privacy:
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt (-1 / +1 lines)
Lines 271-277 Link Here
271
              <div id="bad_data" class="dialog alert">ERROR: Internal error: incomplete hold request.</div>
271
              <div id="bad_data" class="dialog alert">ERROR: Internal error: incomplete hold request.</div>
272
            [% END %]
272
            [% END %]
273
            [% IF ( expired_patron ) %]
273
            [% IF ( expired_patron ) %]
274
                <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>
274
                <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>
275
            [% END %]
275
            [% END %]
276
          [% ELSE %]
276
          [% ELSE %]
277
            [% IF ( none_available ) %]
277
            [% 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