http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8705 Jonathan Druart <jonathan.druart@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@biblibre.co | |m --- Comment #4 from Jonathan Druart <jonathan.druart@biblibre.com> --- Hum... Ok it is a simple patch and currently, it works. But if someone adds a test before, this one will not save. I can't explain that... an example will be more meaningful: my $s = "aaa"; $s =~ m/a(.)a/; say $1; => display "a" But! my $s = "aaa"; $s =~ m/a(.)a/; say $1; $s =~ m/b(.)b/; say $1 => display "a" x 2 $1 is defined in the second case. We have to test with a if when we want used $1 I don't mark it as Failed QA because this patch does not introduce this, but a followup is highly welcomed :) -- You are receiving this mail because: You are watching all bug changes.