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 153-158 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
153
('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo'),
153
('CreateAVFromCataloguing', '1', '', 'Ability to create authorized values from the cataloguing module', 'YesNo'),
154
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
154
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo'),
155
('CumulativeRestrictionPeriods',0,NULL,'Cumulate the restriction periods instead of keeping the highest','YesNo'),
155
('CumulativeRestrictionPeriods',0,NULL,'Cumulate the restriction periods instead of keeping the highest','YesNo'),
156
('CurbsidePickup', '0', NULL, 'Enable curbside pickup', 'YesNo'),
156
('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'),
157
('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'),
157
('CustomCoverImages','0',NULL,'If enabled, the custom cover images will be displayed in the staff interface. CustomCoverImagesURL must be defined.','YesNo'),
158
('CustomCoverImages','0',NULL,'If enabled, the custom cover images will be displayed in the staff interface. CustomCoverImagesURL must be defined.','YesNo'),
158
('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'),
159
('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 / +7 lines)
Lines 1360-1362 Circulation: Link Here
1360
            - pref: SIP2SortBinMapping
1360
            - pref: SIP2SortBinMapping
1361
              type: textarea
1361
              type: textarea
1362
              class: long
1362
              class: long
1363
- 
1363
    Curbside pickup module:
1364
        -
1365
            - pref: CurbsidePickup
1366
              choices:
1367
                  1: Enable
1368
                  0: Disable
1369
            - "the curbside pickup module."

Return to bug 30650