https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36986

Victor Grousset/tuxayo <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #5 from Victor Grousset/tuxayo <[email protected]> ---
Before Bug 26176

select variable,value from systempreferences
where variable like 'StaffLogin%IP';
| StaffLoginBranchBasedOnIP | 1     |
select variable,value from systempreferences
where variable like 'AutoLo%';
| AutoLocation | 0     |


---------------------
After Bug 26176 (on v24.05.00) (SO WITHOUT THE PATCH, this is what will happen
to people having already upgraded)

Upgrade to 23.12.00.061  [19:45:10]: Bug 26176 - Rename AutoLocation and
StaffLoginBranchBasedOnIP system preferences
        Renamed system preference 'AutoLocation' to
'StaffLoginRestrictLibraryByIP'
Upgrade to 24.05.00.000  [19:45:10]: Koha 24.05.00 release

select variable,value from systempreferences
where variable like 'StaffLogin%IP';
| StaffLoginBranchBasedOnIP     | 1     |
| StaffLoginRestrictLibraryByIP | 0     |
select variable,value from systempreferences
where variable like 'AutoLo%';
Empty set (0.000 sec)


--------
WITH THE PATCH, so direct upgrade from before Bug 26176 to main + this patch
select variable,value from systempreferences
where variable like 'StaffLogin%IP';
| StaffLoginLibraryBasedOnIP    | 1     |
| StaffLoginRestrictLibraryByIP | 0     |
select variable,value from systempreferences
    -> where variable like 'AutoLo%';
Empty set (0.001 sec)


Seems to work as advertised but I'm way to confused about these sysprefs
renames ^^"

----


Is that out of scope if this ticket to handle the instances that upgraded to
v24.05.00 ?

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to