https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36986 Victor Grousset/tuxayo <victor@tuxayo.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |victor@tuxayo.net --- Comment #5 from Victor Grousset/tuxayo <victor@tuxayo.net> --- 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.