https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15492
--- Comment #50 from Jonathan Druart <[email protected]> --- Test in C4::Auth does not test if the AutoSelfCheckID patron has self_checkout_module permission: 185 if ( 186 # If the user logged in is the SCO user and they try to go out of the SCO module, 187 # log the user out removing the CGISESSID cookie 188 $in->{template_name} !~ m|sco/| 189 && $user 190 && C4::Context->preference('AutoSelfCheckID') 191 && $user eq C4::Context->preference('AutoSelfCheckID') 192 ) 193 { 194 $kick_out = 1; 195 } -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
