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

(-)a/installer/data/mysql/atomicupdate/bug_24499-add_EnhancedMessaging_syspref.pl (-1 / +1 lines)
Lines 6-11 return { Link Here
6
                up => sub {
6
                up => sub {
7
                            my ($args) = @_;
7
                            my ($args) = @_;
8
                                    my ($dbh, $out) = @$args{qw(dbh out)};
8
                                    my ($dbh, $out) = @$args{qw(dbh out)};
9
                                            $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('EnhancedMessaging', '1', NULL, "Send/Don't send notifications througt misc/cronjobs/advance_notices.pl", 'YesNo') });
9
                                            $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('EnhancedMessaging', '1', NULL, "Send/Don't send notifications through misc/cronjobs/advance_notices.pl", 'YesNo') });
10
                                                },
10
                                                },
11
                                            };
11
                                            };
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 252-258 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
252
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
252
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
253
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
253
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
254
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
254
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
255
('EnhancedMessaging','1','NULL','If ON, send notifications throught the misc/cronjobs/advance_notices.pl.','YesNo'),
255
('EnhancedMessaging','1','NULL','If ON, send notifications through the misc/cronjobs/advance_notices.pl.','YesNo'),
256
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
256
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
257
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
257
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
258
('ERMModule', '0', NULL, 'Enable the e-resource management module', 'YesNo'),
258
('ERMModule', '0', NULL, 'Enable the e-resource management module', 'YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (-2 / +1 lines)
Lines 162-168 Patrons: Link Here
162
           choices:
162
           choices:
163
               1: Send
163
               1: Send
164
               0: Don't send
164
               0: Don't send
165
         - "notifications throught <code>misc/cronjobs/advance_notices.pl</code>."
165
         - "notifications through <code>misc/cronjobs/advance_notices.pl</code>."
166
         - '<br><strong>NOTE:</strong> This only applies to courtesy notices.'
166
         - '<br><strong>NOTE:</strong> This only applies to courtesy notices.'
167
167
168
         - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/process_message_queue.pl</code> and the <code>misc/cronjobs/advance_notices.pl</code> cronjob. Ask your system administrator to schedule them."
168
         - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/process_message_queue.pl</code> and the <code>misc/cronjobs/advance_notices.pl</code> cronjob. Ask your system administrator to schedule them."
169
- 

Return to bug 24499