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

(-)a/installer/data/mysql/atomicupdate/bug_14642_holds_logging.sql (-2 / +2 lines)
Lines 1-11 Link Here
1
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) VALUES
1
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) VALUES
2
('HoldsLog','1',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo');
2
('HoldsLog','0',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo');
3
3
4
-- $DBversion = "16.06.00.XXX";
4
-- $DBversion = "16.06.00.XXX";
5
-- if ( CheckVersion($DBversion) ) {
5
-- if ( CheckVersion($DBversion) ) {
6
--     $dbh->do(q{
6
--     $dbh->do(q{
7
--         INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) VALUES
7
--         INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type ) VALUES
8
--         ('HoldsLog','1',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo');
8
--         ('HoldsLog','0',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo');
9
--     });
9
--     });
10
10
11
--     print "Upgrade to $DBversion done (Bug 14642: Add logging of hold modifications)\n";
11
--     print "Upgrade to $DBversion done (Bug 14642: Add logging of hold modifications)\n";
(-)a/installer/data/mysql/sysprefs.sql (-2 / +1 lines)
Lines 168-174 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
168
('HighlightOwnItemsOnOPAC','0','','If on, and a patron is logged into the OPAC, items from his or her home library will be emphasized and shown first in search results and item details.','YesNo'),
168
('HighlightOwnItemsOnOPAC','0','','If on, and a patron is logged into the OPAC, items from his or her home library will be emphasized and shown first in search results and item details.','YesNo'),
169
('HighlightOwnItemsOnOPACWhich','PatronBranch','PatronBranch|OpacURLBranch','Decides which branch\'s items to emphasize. If PatronBranch, emphasize the logged in user\'s library\'s items. If OpacURLBranch, highlight the items of the Apache var BRANCHCODE defined in Koha\'s Apache configuration file.','Choice'),
169
('HighlightOwnItemsOnOPACWhich','PatronBranch','PatronBranch|OpacURLBranch','Decides which branch\'s items to emphasize. If PatronBranch, emphasize the logged in user\'s library\'s items. If OpacURLBranch, highlight the items of the Apache var BRANCHCODE defined in Koha\'s Apache configuration file.','Choice'),
170
('HoldFeeMode','not_always','always|not_always','Set the hold fee mode','Choice'),
170
('HoldFeeMode','not_always','always|not_always','Set the hold fee mode','Choice'),
171
('HoldsLog','1',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo'),
171
('HoldsLog','0',NULL,'If ON, log create/cancel/suspend/resume actions on holds.','YesNo'),
172
('HoldsQueueSkipClosed', '0', NULL, 'If enabled, any libraries that are closed when the holds queue is built will be ignored for the purpose of filling holds.', 'YesNo'),
172
('HoldsQueueSkipClosed', '0', NULL, 'If enabled, any libraries that are closed when the holds queue is built will be ignored for the purpose of filling holds.', 'YesNo'),
173
('HoldsToPullStartDate','2',NULL,'Set the default start date for the Holds to pull list to this many days ago','Integer'),
173
('HoldsToPullStartDate','2',NULL,'Set the default start date for the Holds to pull list to this many days ago','Integer'),
174
('HomeOrHoldingBranch','holdingbranch','holdingbranch|homebranch','Used by Circulation to determine which branch of an item to check with independent branches on, and by search to determine which branch to choose for availability ','Choice'),
174
('HomeOrHoldingBranch','holdingbranch','holdingbranch|homebranch','Used by Circulation to determine which branch of an item to check with independent branches on, and by search to determine which branch to choose for availability ','Choice'),
175
- 

Return to bug 14642