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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +2 lines)
Lines 472-476 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
472
('XSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on intranet','Free'),
472
('XSLTDetailsDisplay','default','','Enable XSL stylesheet control over details page display on intranet','Free'),
473
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
473
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
474
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
474
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
475
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
475
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
476
('SessionRestrictionByIP','0','Check for Change in Remote IP address for Session Security . Disable when remote ip address changes frequently.','','YesNo');
476
;
477
;
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +6 lines)
Lines 9576-9581 if ( CheckVersion($DBversion) ) { Link Here
9576
$DBversion = "3.18.00.000";
9576
$DBversion = "3.18.00.000";
9577
if ( CheckVersion($DBversion) ) {
9577
if ( CheckVersion($DBversion) ) {
9578
    print "Upgrade to $DBversion done (3.18.0 release)\n";
9578
    print "Upgrade to $DBversion done (3.18.0 release)\n";
9579
}
9580
9581
$DBversion = "3.18.00.001";
9582
if ( CheckVersion($DBversion) ) {
9583
    $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('SessionRestrictionByIP','0','Check for Change in  Remote IP address for Session Security. Disable when remote ip address changes frequently.','','YesNo')");
9584
    print "Upgrade to $DBversion done (Bug 5511 - SessionRestrictionByIP)";
9579
    SetVersion ($DBversion);
9585
    SetVersion ($DBversion);
9580
}
9586
}
9581
9587
9582
- 

Return to bug 5511