http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

--- Comment #126 from Jonathan Druart <[email protected]> ---
Created attachment 21371
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21371&action=edit
Bug 8015: Followup QA issues

eval { $eval }; != eval $eval;

my $r = q|/foo/fee/|;
my @values = ("foo", "bar", "foobar");
for my $v ( @values ) {
    eval {"\$v =~ s$r"};
    say $v;
    eval "\$v =~ s$r";
    say $v;
}

will display:

foo
fee
bar
bar
foobar
feebar

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://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