[Koha-bugs] [Bug 4515] Few very small errors in opac-search.pl

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Nov 4 12:32:20 CET 2010


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

M. de Rooy <m.de.rooy at rijksmuseum.nl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
            Version|rel_3_0                     |HEAD
         AssignedTo|gmcharlt at gmail.com          |m.de.rooy at 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 at 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.


More information about the Koha-bugs mailing list