[Koha-bugs] [Bug 8705] Software error on help of main page

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Aug 31 15:57:05 CEST 2012


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

Jonathan Druart <jonathan.druart at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart at biblibre.co
                   |                            |m

--- Comment #4 from Jonathan Druart <jonathan.druart at 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.


More information about the Koha-bugs mailing list