Bug - 5511 [Followup]: Switched defults
Agree with Chris that the defualt should maintain the higher security and not reduce it. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
2d4d65d526
commit
129fb1fbe2
3 changed files with 3 additions and 3 deletions
|
@ -473,5 +473,5 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `
|
|||
('XSLTResultsDisplay','default','','Enable XSL stylesheet control over results page display on intranet','Free'),
|
||||
('z3950AuthorAuthFields','701,702,700',NULL,'Define the MARC biblio fields for Personal Name Authorities to fill biblio.author','free'),
|
||||
('z3950NormalizeAuthor','0','','If ON, Personal Name Authorities will replace authors in biblio.author','YesNo'),
|
||||
('SessionRestrictionByIP','0','Check for Change in Remote IP address for Session Security . Disable when remote ip address changes frequently.','','YesNo');
|
||||
('SessionRestrictionByIP','1','Check for Change in Remote IP address for Session Security . Disable when remote ip address changes frequently.','','YesNo');
|
||||
;
|
||||
|
|
|
@ -9754,7 +9754,7 @@ if ( CheckVersion($DBversion) ) {
|
|||
|
||||
$DBversion = "3.19.00.XXX";
|
||||
if ( CheckVersion($DBversion) ) {
|
||||
$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')");
|
||||
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('SessionRestrictionByIP','1','Check for Change in Remote IP address for Session Security. Disable when remote ip address changes frequently.','','YesNo')");
|
||||
print "Upgrade to $DBversion done (Bug 5511 - SessionRestrictionByIP)";
|
||||
SetVersion ($DBversion);
|
||||
}
|
||||
|
|
|
@ -65,7 +65,7 @@ Administration:
|
|||
- staff to log in from a computer in the IP address range <a href="/cgi-bin/koha/admin/branches.pl">specified by their library</a> (if any).
|
||||
-
|
||||
- pref: SessionRestrictionByIP
|
||||
default: 0
|
||||
default: 1
|
||||
choices:
|
||||
yes: Enable
|
||||
no: "Disable"
|
||||
|
|
Loading…
Reference in a new issue