https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24381
Lucas Gass <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #65 from Lucas Gass <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
