https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21214

Bernardo Gonzalez Kriegel <bgkrie...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bgkrie...@gmail.com
             Status|Needs Signoff               |Failed QA

--- Comment #4 from Bernardo Gonzalez Kriegel <bgkrie...@gmail.com> ---
Hi, there is a problem in the code

->  243     my $quoted_codes = '';
    244     if ($letter_codes) {
    245         my @codes = map { "'$_'" } split(',', $letter_codes);
->  246         my $quoted_codes = join(',', @codes);
    247     }

Two "my $quoted_codes", in lines 243 and 246.
$quoted_codes passed to execute will always be empty.
Remove the second 'my'

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
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/

Reply via email to