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

(-)a/installer/data/mysql/atomicupdate/sysprefs_Bug12528.sql (-2 / +3 lines)
Lines 1-3 Link Here
1
INSERT INTO systempreferences ( variable, value, options, explanation,type ) VALUES
1
INSERT INTO systempreferences ( variable, value, options, explanation,type ) VALUES
2
('OPACEnhancedMessagingPreferences', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo')
2
('OPACEnhancedMessagingPreferences', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo') ON DUPLICATE KEY UPDATE value ='1';
3
;
3
INSERT INTO systempreferences ( variable, value, options, explanation,type ) VALUES
4
('EnhancedMessagingPreferences', '1', NULL, 'If ON, allows patrons to select to receive additional messages about items due or nearly due.', 'YesNo') ON DUPLICATE KEY UPDATE value ='1';
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (-1 / +1 lines)
Lines 54-60 Patrons: Link Here
54
           choices:
54
           choices:
55
               yes: Allow
55
               yes: Allow
56
               no: "Don't allow"
56
               no: "Don't allow"
57
         - patrons to choose which notices they receive and when they receive them. Note that this only applies to certain kinds of notices.
57
         - "Staff to manage which notices patrons will receive and when they will receive them. Note: this only applies to courtesy notices. To manage if patrons have also access to these settings, use OPACEnhancedMessagingPreferences."   
58
     -
58
     -
59
         - pref: ExtendedPatronAttributes
59
         - pref: ExtendedPatronAttributes
60
           choices:
60
           choices:
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-messaging.tt (-2 lines)
Lines 132-138 Link Here
132
                </div> <!-- / #usermessaging -->
132
                </div> <!-- / #usermessaging -->
133
                [% ELSE %]
133
                [% ELSE %]
134
                    <h4>You are not allowed to call this page directly</h4>
134
                    <h4>You are not allowed to call this page directly</h4>
135
                    <span> To report this problem, you can <a href="mailto:[% admin %]">email the Koha Administrator</a>.</span>
136
                [% END %]
135
                [% END %]
137
           </div> <!-- / .span10 -->
136
           </div> <!-- / .span10 -->
138
        </div> <!-- / .row-fluid -->
137
        </div> <!-- / .row-fluid -->
139
- 

Return to bug 12528