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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +2 lines)
Lines 419-423 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
419
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
419
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
420
('yuipath','local','local|http://yui.yahooapis.com/2.5.1/build','Insert the path to YUI libraries, choose local if you use koha offline','Choice'),
420
('yuipath','local','local|http://yui.yahooapis.com/2.5.1/build','Insert the path to YUI libraries, choose local if you use koha offline','Choice'),
421
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
421
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
422
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo')
422
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
423
('SessionRestrictionByIP','0','Check for Change in Remote IP address for Session Security . Disable when remote ip address changes frequently.','','YesNo');
423
;
424
;
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +6 lines)
Lines 7595-7600 if ( CheckVersion($DBversion) ) { Link Here
7595
    SetVersion($DBversion);
7595
    SetVersion($DBversion);
7596
}
7596
}
7597
7597
7598
$DBversion = "3.13.00.XXX";
7599
if ( CheckVersion($DBversion) ) {
7600
    $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')");
7601
    print "Upgrade to $DBversion done (Bug 5511 - SessionRestrictionByIP)";
7602
    SetVersion ($DBversion);
7603
}
7598
7604
7599
=head1 FUNCTIONS
7605
=head1 FUNCTIONS
7600
7606
7601
- 

Return to bug 5511