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

(-)a/installer/data/mysql/atomicupdate/bug_24083_EditDueDates_syspref.perl (+6 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
	$dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('EditDueDates', '0', 'If enabled, it is possible to modify due dates in a patron checkout list ', '', 'YesNo'); | );
4
	SetVersion( $DBversion );
5
	print "Upgrade to $DBversion done (Bug 24083 - Add EditDueDates syspref)\n";
6
}
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 163-168 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
163
('DumpTemplateVarsIntranet',  '0', NULL ,  'If enabled, dump all Template Toolkit variable to a comment in the html source for the staff intranet.',  'YesNo'),
163
('DumpTemplateVarsIntranet',  '0', NULL ,  'If enabled, dump all Template Toolkit variable to a comment in the html source for the staff intranet.',  'YesNo'),
164
('DumpTemplateVarsOpac',  '0', NULL ,  'If enabled, dump all Template Toolkit variable to a comment in the html source for the opac.',  'YesNo'),
164
('DumpTemplateVarsOpac',  '0', NULL ,  'If enabled, dump all Template Toolkit variable to a comment in the html source for the opac.',  'YesNo'),
165
('EasyAnalyticalRecords','0','','If on, display in the catalogue screens tools to easily setup analytical record relationships','YesNo'),
165
('EasyAnalyticalRecords','0','','If on, display in the catalogue screens tools to easily setup analytical record relationships','YesNo'),
166
('EditDueDates','0','','If on, it is possible to edit due dates within a patron checkouts list','YesNo'),
166
('ElasticsearchIndexStatus_authorities', '0', 'Authorities index status', NULL, NULL),
167
('ElasticsearchIndexStatus_authorities', '0', 'Authorities index status', NULL, NULL),
167
('ElasticsearchIndexStatus_biblios', '0', 'Biblios index status', NULL, NULL),
168
('ElasticsearchIndexStatus_biblios', '0', 'Biblios index status', NULL, NULL),
168
('ElasticsearchMARCFormat', 'ISO2709', 'ISO2709|ARRAY', 'Elasticsearch MARC format. ISO2709 format is recommended as it is faster and takes less space, whereas array is searchable.', 'Choice'),
169
('ElasticsearchMARCFormat', 'ISO2709', 'ISO2709|ARRAY', 'Elasticsearch MARC format. ISO2709 format is recommended as it is faster and takes less space, whereas array is searchable.', 'Choice'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 157-162 Circulation: Link Here
157
                  yes: Allow
157
                  yes: Allow
158
                  no: "Don't allow"
158
                  no: "Don't allow"
159
            - patrons to submit notes about checked out items.
159
            - patrons to submit notes about checked out items.
160
        -
161
            - pref: EditDueDates
162
              choices:
163
                  yes: Allow
164
                  no: "Don't allow"
165
            - editing of due dates in a patron checkouts list
160
166
161
    Checkout Policy:
167
    Checkout Policy:
162
        -
168
        -
163
- 

Return to bug 24608