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

(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 356-362 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
356
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
356
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
357
('NoticeBcc','','','Email address to bcc outgoing notices sent by email','free'),
357
('NoticeBcc','','','Email address to bcc outgoing notices sent by email','free'),
358
('NoticeCSS','',NULL,'Notices CSS url.','free'),
358
('NoticeCSS','',NULL,'Notices CSS url.','free'),
359
('NoticesLog','',NULL,'If enabled, log changes to notice templates','YesNo'),
359
('NoticesLog','0',NULL,'If enabled, log changes to notice templates','YesNo'),
360
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
360
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
361
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
361
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
362
('NovelistSelectPassword','',NULL,'Novelist select user Password','free'),
362
('NovelistSelectPassword','',NULL,'Novelist select user Password','free'),
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 23784-23790 if ( CheckVersion($DBversion) ) { Link Here
23784
23784
23785
    $dbh->do(q{
23785
    $dbh->do(q{
23786
        INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type)
23786
        INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type)
23787
        VALUES ('NoticesLog','',NULL,'If enabled, log changes to notice templates','YesNo')
23787
        VALUES ('NoticesLog','0',NULL,'If enabled, log changes to notice templates','YesNo')
23788
    });
23788
    });
23789
23789
23790
    NewVersion( $DBversion, 14233, "Add id field to letter table" );
23790
    NewVersion( $DBversion, 14233, "Add id field to letter table" );
23791
- 

Return to bug 14233