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 218-224 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
218
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
218
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
219
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
219
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
220
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
220
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
221
('EnhancedMessaging','1','NULL','If ON, send notifications throught the misc/cronjobs/advance_notices.pl.','YesNo'),
221
('EnhancedMessaging','1','NULL','If ON, send notifications through the misc/cronjobs/advance_notices.pl.','YesNo'),
222
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
222
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
223
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC. Requires EnhancedMessaging is ON', 'YesNo'),
223
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC. Requires EnhancedMessaging is ON', 'YesNo'),
224
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
224
('expandedSearchOption','0',NULL,'If ON, set advanced search to be expanded by default','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (-2 / +1 lines)
Lines 143-149 Patrons: Link Here
143
           choices:
143
           choices:
144
               1: Send
144
               1: Send
145
               0: Don't send
145
               0: Don't send
146
         - "notifications throught <code>misc/cronjobs/advance_notices.pl</code>."
146
         - "notifications through <code>misc/cronjobs/advance_notices.pl</code>."
147
         - '<br><strong>NOTE:</strong> This only applies to courtesy notices.'
147
         - '<br><strong>NOTE:</strong> This only applies to courtesy notices.'
148
148
149
         - "<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."
149
         - "<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."
150
- 

Return to bug 24499