https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24381 Lucas Gass <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #65 from Lucas Gass <lucas@bywatersolutions.com> --- It appears like there is a problem with the rebase here. I think this block is now being repeated: my $htdocs = C4::Context->config('intrahtdocs'); my ($theme, $lang, $activethemes)= C4::Templates::themelanguage( $htdocs, 'about.tt', 'intranet'); my @includes; foreach (@$activethemes) { push @includes, "$htdocs/$_/$lang/includes"; push @includes, "$htdocs/$_/en/includes" unless $lang eq 'en'; } The QA tool complains about that: FAIL C4/Letters.pm FAIL valid "my" variable $htdocs masks earlier declaration in same scope "my" variable $theme masks earlier declaration in same scope "my" variable $lang masks earlier declaration in same scope "my" variable @includes masks earlier declaration in same scope "my" variable $htdocs masks earlier declaration in same scope "my" variable $theme masks earlier declaration in same scope "my" variable $lang masks earlier declaration in same scope "my" variable @includes masks earlier declaration in same scope -- You are receiving this mail because: You are watching all bug changes.