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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 150-157 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
150
('hide_marc','0',NULL,'If ON, disables display of MARC fields, subfield codes & indicators (still shows data)','YesNo'),
150
('hide_marc','0',NULL,'If ON, disables display of MARC fields, subfield codes & indicators (still shows data)','YesNo'),
151
('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'),
151
('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'),
152
('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'),
152
('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'),
153
('HoldsToPullStartDate','2',NULL,'Set the default start date for the Holds to pull list to this many days ago','Integer'),
154
('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'),
153
('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'),
154
('HoldsToPullStartDate','2',NULL,'Set the default start date for the Holds to pull list to this many days ago','Integer'),
155
('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'),
155
('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'),
156
('HTML5MediaEnabled','not','not|opac|staff|both','Show a tab with a HTML5 media player for files catalogued in field 856','Choice'),
156
('HTML5MediaEnabled','not','not|opac|staff|both','Show a tab with a HTML5 media player for files catalogued in field 856','Choice'),
157
('HTML5MediaExtensions','webm|ogg|ogv|oga|vtt','','Media file extensions','free'),
157
('HTML5MediaExtensions','webm|ogg|ogv|oga|vtt','','Media file extensions','free'),
(-)a/t/db_dependent/HoldsQueue.t (-2 / +1 lines)
Lines 319-325 is( scalar( @$holds_queue ), 3, "Holds queue filling correct number for holds fo Link Here
319
# Test skipping hold picks for closed libraries without transport cost matrix
319
# Test skipping hold picks for closed libraries without transport cost matrix
320
# At this point in the test, we have 3 rows in the holds queue
320
# At this point in the test, we have 3 rows in the holds queue
321
# one of which is coming from MPL. Let's enable HoldsQueueSkipClosed
321
# one of which is coming from MPL. Let's enable HoldsQueueSkipClosed
322
# and use our previously created holiday for MPL. 
322
# and use our previously created holiday for MPL
323
# When we run it again we should only have 2 rows in the holds queue
323
# When we run it again we should only have 2 rows in the holds queue
324
C4::Context->set_preference( 'HoldsQueueSkipClosed', 1 );
324
C4::Context->set_preference( 'HoldsQueueSkipClosed', 1 );
325
C4::HoldsQueue::CreateQueue();
325
C4::HoldsQueue::CreateQueue();
326
- 

Return to bug 12803