From: Jonathan Druart Date: Mon, 21 Jul 2014 08:04:06 +0000 (+0200) Subject: Bug 12287: At the moment, found is 'W', 'T' or NULL X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=7706ba9df49794002392597e36f1f4edf3d9e9ab;p=koha.git Bug 12287: At the moment, found is 'W', 'T' or NULL Just add a small comment to avoid any further ambiguity. Signed-off-by: Jonathan Druart --- diff --git a/reserve/request.pl b/reserve/request.pl index 0839f458bf..14340c24b3 100755 --- a/reserve/request.pl +++ b/reserve/request.pl @@ -208,7 +208,7 @@ foreach my $biblionumber (@biblionumbers) { my $alreadyreserved = 0; foreach my $res (@$reserves) { - if ( defined $res->{found} ) { + if ( defined $res->{found} ) { # found can be 'W' or 'T' $count--; }