Bel Inconnu is actually no longer used 488 LoginFirstname => ( C4::Context->userenv ? C4::Context->userenv->{"firstname"} : "Bel" ), 489 LoginSurname => C4::Context->userenv ? C4::Context->userenv->{"surname"} : "Inconnu", 490 emailaddress => C4::Context->userenv ? C4::Context->userenv->{"emailaddress"} : undef,
Created attachment 191047 [details] [review] Bug 41557: Remove unused vars sent to template 488 LoginFirstname => ( C4::Context->userenv ? C4::Context->userenv->{"firstname"} : "Bel" ), 489 LoginSurname => C4::Context->userenv ? C4::Context->userenv->{"surname"} : "Inconnu", 490 emailaddress => C4::Context->userenv ? C4::Context->userenv->{"emailaddress"} : undef, Test plan: `git grep` the 3 variables and confirm that there is no occurrences in the templates (.tt/.inc files)
Created attachment 191829 [details] [review] Bug 41557: Remove unused vars sent to template 488 LoginFirstname => ( C4::Context->userenv ? C4::Context->userenv->{"firstname"} : "Bel" ), 489 LoginSurname => C4::Context->userenv ? C4::Context->userenv->{"surname"} : "Inconnu", 490 emailaddress => C4::Context->userenv ? C4::Context->userenv->{"emailaddress"} : undef, Test plan: `git grep` the 3 variables and confirm that there is no occurrences in the templates (.tt/.inc files) Signed-off-by: Connor Cameron-Jones <22264cc@hvhs.school.nz>
Created attachment 191839 [details] [review] Bug 41557: Remove unused vars sent to template 488 LoginFirstname => ( C4::Context->userenv ? C4::Context->userenv->{"firstname"} : "Bel" ), 489 LoginSurname => C4::Context->userenv ? C4::Context->userenv->{"surname"} : "Inconnu", 490 emailaddress => C4::Context->userenv ? C4::Context->userenv->{"emailaddress"} : undef, Test plan: `git grep` the 3 variables and confirm that there is no occurrences in the templates (.tt/.inc files) Signed-off-by: Connor Cameron-Jones <22264cc@hvhs.school.nz> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Nice work everyone! Pushed to main for 26.05