http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4515 M. de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Version|rel_3_0 |HEAD AssignedTo|gmcharlt@gmail.com |m.de.rooy@rijksmuseum.nl Summary|Three very small errors in |Few very small errors in |opac-search.pl |opac-search.pl --- Comment #1 from M. de Rooy <m.de.rooy@rijksmuseum.nl> 2010-11-04 11:32:20 UTC --- Drop points 1 and 3 for master now. Point 2 still holds. Adding fix for warnings on undefined values in comparison for lines 485, 488 and 510. Corrected these small errors in patch for master now. -for (my $i=0;$i<=@servers;$i++) { +for (my $i=0;$i<@servers;$i++) { - if ($borrowernumber eq '') { + if (!$borrowernumber || $borrowernumber eq '') { - if ($params->{'offset'} eq '') { + if (($params->{'offset'}||'') eq '') { - if ($params->{'offset'} eq '') { + if (($params->{'offset'}||'') eq '') { -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.