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

(-)a/installer/data/mysql/sysprefs.sql (-2 / +1 lines)
Lines 193-199 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
193
('LocalHoldsPriority',  '0', NULL,  'Enables the LocalHoldsPriority feature',  'YesNo'),
193
('LocalHoldsPriority',  '0', NULL,  'Enables the LocalHoldsPriority feature',  'YesNo'),
194
('LocalHoldsPriorityItemControl',  'holdingbranch',  'holdingbranch|homebranch',  'decides if the feature operates using the item''s home or holding library.',  'Choice'),
194
('LocalHoldsPriorityItemControl',  'holdingbranch',  'holdingbranch|homebranch',  'decides if the feature operates using the item''s home or holding library.',  'Choice'),
195
('LocalHoldsPriorityPatronControl',  'PickupLibrary',  'HomeLibrary|PickupLibrary',  'decides if the feature operates using the library set as the patron''s home library, or the library set as the pickup library for the given hold.',  'Choice'),
195
('LocalHoldsPriorityPatronControl',  'PickupLibrary',  'HomeLibrary|PickupLibrary',  'decides if the feature operates using the library set as the patron''s home library, or the library set as the pickup library for the given hold.',  'Choice'),
196
('LogLevel', '5', '1|2|3|4|5|6|7', 'Set the level of logs. 1=Unusable, 2=Critical, 3=Error, 4=Warning, 5=Normal, 6=Info, 7=Debug','1|2|3|4|5|6|7', 'Choice'),
196
('LogLevel', '5', '1|2|3|4|5|6|7', 'Set the level of logs.i 0=Unusable, 1=Alert ,2=Critical, 3=Error, 4=Warning, 5=Normal, 6=Info, 7=Debug','1|2|3|4|5|6|7', 'Choice'),
197
('LogToHtmlComments', '0', NULL, 'Embed the logs into the html as a comment.', 'YesNo'),
197
('LogToHtmlComments', '0', NULL, 'Embed the logs into the html as a comment.', 'YesNo'),
198
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
198
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
199
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
199
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
Lines 476-479 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
476
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
476
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
477
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
477
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
478
;
478
;
479
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 9631-9637 if ( CheckVersion($DBversion) ) { Link Here
9631
$DBversion = "3.19.00.XXX";
9631
$DBversion = "3.19.00.XXX";
9632
if ( CheckVersion($DBversion) ) {
9632
if ( CheckVersion($DBversion) ) {
9633
    $dbh->do(qq{
9633
    $dbh->do(qq{
9634
        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('LogLevel','5','Set the level of logs. 1=Unusable, 2=Critical, 3=Error, 4=Warning, 5=Normal, 6=Info, 7=Debug','1|2|3|4|5|6|7','Choice');
9634
+        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('LogLevel','5','Set the level of logs. 0=Unusable, 1=Alert ,2=Critical, 3=Error, 4=Warning, 5=Normal, 6=Info, 7=Debug','0|1|2|3|4|5|6|7','Choice');
9635
    });
9635
    });
9636
    $dbh->do(qq{
9636
    $dbh->do(qq{
9637
        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('LogToHtmlComments','0','Embed the logs into the html as a comment.','','YesNo');
9637
        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('LogToHtmlComments','0','Embed the logs into the html as a comment.','','YesNo');
9638
- 

Return to bug 8190