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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 23-29 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
23
('AllowOnShelfHolds','0','','Allow hold requests to be placed on items that are not on loan','YesNo'),
23
('AllowOnShelfHolds','0','','Allow hold requests to be placed on items that are not on loan','YesNo'),
24
('AllowPKIAuth','None','None|Common Name|emailAddress','Use the field from a client-side SSL certificate to look a user in the Koha database','Choice'),
24
('AllowPKIAuth','None','None|Common Name|emailAddress','Use the field from a client-side SSL certificate to look a user in the Koha database','Choice'),
25
('AllowPurchaseSuggestionBranchChoice','0','1','Allow user to choose branch when making a purchase suggestion','YesNo'),
25
('AllowPurchaseSuggestionBranchChoice','0','1','Allow user to choose branch when making a purchase suggestion','YesNo'),
26
('AllowRenewalIfOtherItemsAvailable','0',NULL,'If enabled, allow a patron to renew an item with unfilled holds if other available items can fill that hold.','YesNo'),
26
('AllowRenewalIfOtherItemsAvailable','1',NULL,'If enabled, allow a patron to renew an item with unfilled holds if other available items can fill that hold.','YesNo'),
27
('AllowRenewalLimitOverride','0',NULL,'if ON, allows renewal limits to be overridden on the circulation screen','YesNo'),
27
('AllowRenewalLimitOverride','0',NULL,'if ON, allows renewal limits to be overridden on the circulation screen','YesNo'),
28
('AllowReturnToBranch','anywhere','anywhere|homebranch|holdingbranch|homeorholdingbranch','Where an item may be returned','Choice'),
28
('AllowReturnToBranch','anywhere','anywhere|homebranch|holdingbranch|homeorholdingbranch','Where an item may be returned','Choice'),
29
('AllowSelfCheckReturns','0','','If enabled, patrons may return items through the Web-based Self Checkout','YesNo'),
29
('AllowSelfCheckReturns','0','','If enabled, patrons may return items through the Web-based Self Checkout','YesNo'),
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 8016-8022 $DBversion = "3.15.00.XXX"; Link Here
8016
if (CheckVersion($DBversion)) {
8016
if (CheckVersion($DBversion)) {
8017
    $dbh->do(q{
8017
    $dbh->do(q{
8018
        INSERT INTO systempreferences ( variable, value, options, explanation, type ) VALUES
8018
        INSERT INTO systempreferences ( variable, value, options, explanation, type ) VALUES
8019
        ('AllowRenewalIfOtherItemsAvailable','0',NULL,'If enabled, allow a patron to renew an item with unfilled holds if other available items can fill that hold.','YesNo')
8019
        ('AllowRenewalIfOtherItemsAvailable','1',NULL,'If enabled, allow a patron to renew an item with unfilled holds if other available items can fill that hold.','YesNo')
8020
    });
8020
    });
8021
    print "Upgrade to $DBversion done (Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds)\n";
8021
    print "Upgrade to $DBversion done (Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds)\n";
8022
    SetVersion($DBversion);
8022
    SetVersion($DBversion);
8023
- 

Return to bug 11634