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

(-)a/installer/data/mysql/atomicupdate/bug_30650.pl (+6 lines)
Lines 88-92 return { Link Here
88
                }
88
                }
89
            );
89
            );
90
        }
90
        }
91
92
        $dbh->do(q{
93
            INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type` )
94
            VALUES
95
            ('CurbsidePickup', '0', NULL, 'Enable curbside pickup', 'YesNo')
96
        });
91
    }
97
    }
92
  }
98
  }
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 151-156 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
151
('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo'),
151
('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo'),
152
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
152
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
153
('CumulativeRestrictionPeriods',0,NULL,'Cumulate the restriction periods instead of keeping the highest','YesNo'),
153
('CumulativeRestrictionPeriods',0,NULL,'Cumulate the restriction periods instead of keeping the highest','YesNo'),
154
('CurbsidePickup', '0', NULL, 'Enable curbside pickup', 'YesNo'),
154
('CurrencyFormat','US','US|FR|CH','Determines the display format of currencies. eg: \'36000\' is displayed as \'360 000,00\'  in \'FR\' or \'360,000.00\'  in \'US\'.','Choice'),
155
('CurrencyFormat','US','US|FR|CH','Determines the display format of currencies. eg: \'36000\' is displayed as \'360 000,00\'  in \'FR\' or \'360,000.00\'  in \'US\'.','Choice'),
155
('CustomCoverImages','0',NULL,'If enabled, the custom cover images will be displayed in the staff interface. CustomCoverImagesURL must be defined.','YesNo'),
156
('CustomCoverImages','0',NULL,'If enabled, the custom cover images will be displayed in the staff interface. CustomCoverImagesURL must be defined.','YesNo'),
156
('CustomCoverImagesURL','',NULL,'Define an URL serving book cover images, using the following patterns: %issn%, %isbn%, FIXME ADD MORE (use it with CustomCoverImages and/or OPACCustomCoverImages)','free'),
157
('CustomCoverImagesURL','',NULL,'Define an URL serving book cover images, using the following patterns: %issn%, %isbn%, FIXME ADD MORE (use it with CustomCoverImages and/or OPACCustomCoverImages)','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +8 lines)
Lines 1334-1336 Circulation: Link Here
1334
            - pref: SIP2SortBinMapping
1334
            - pref: SIP2SortBinMapping
1335
              type: textarea
1335
              type: textarea
1336
              class: long
1336
              class: long
1337
- 
1337
    Curbside pickup module:
1338
        -
1339
            - pref: CurbsidePickup
1340
              choices:
1341
                  1: Enable
1342
                  0: Disable
1343
            - "the curbside pickup module."
1344

Return to bug 30650