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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +2 lines)
Lines 474-478 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
474
('XSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on intranet','Free'),
474
('XSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on intranet','Free'),
475
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
475
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
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
('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo')
478
;
479
;
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +8 lines)
Lines 9992-9997 while ( my $file = readdir $dirh ) { Link Here
9992
    my $rv = $installer->load_sql( $update_dir . $file ) ? 0 : 1;
9992
    my $rv = $installer->load_sql( $update_dir . $file ) ? 0 : 1;
9993
}
9993
}
9994
9994
9995
$DBversion = 'XXX';
9996
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
9997
    $dbh->do("INSERT IGNORE INTO `systempreferences` (variable,value,explanation,options,type) VALUES ('CronjobLog','0',NULL,'If ON, log information from cron jobs.','YesNo');");
9998
    print "Upgrade to $DBversion done (Add CronjobLog syspref)\n";
9999
    SetVersion ($DBversion);
10000
}
10001
10002
9995
=head1 FUNCTIONS
10003
=head1 FUNCTIONS
9996
10004
9997
=head2 TableExists($table)
10005
=head2 TableExists($table)
9998
- 

Return to bug 13889