Index: openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl,v diff -u -N -r1.114.2.5 -r1.114.2.6 --- openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 28 Oct 2019 17:37:23 -0000 1.114.2.5 +++ openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 13 Dec 2019 12:27:05 -0000 1.114.2.6 @@ -1688,10 +1688,13 @@ if { [info exists user(screen_name)] } { set screen_name_user_id [acs_user::get_user_id_by_screen_name -screen_name $user(screen_name)] - if { $screen_name_user_id ne "" && (!$update_p || $screen_name_user_id != $user(user_id)) } { + if { $screen_name_user_id ne "" + && (!$update_p || $screen_name_user_id != $user(user_id)) + } { set element_messages(screen_name) [_ acs-subsite.screen_name_already_taken] - # We could do the same logic as below with 'stealing' the screen_name of an old, banned user. + # We could do the same logic as below with 'stealing' the + # screen_name of an old, banned user. } }