koha-bugs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-bugs] [Bug 462] Request with specific item type causes error in mo


From: bugzilla-daemon
Subject: [Koha-bugs] [Bug 462] Request with specific item type causes error in moremember.pl
Date: 16 May 2003 15:34:17 -0000

http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=462

address@hidden changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         OS/Version|                            |All



------- Additional Comments From address@hidden  2003-05-17 03:34 -------
Reason:
In FindReserves, columns "timestamp" from both reserves and biblio are selected.
The returned value of timestamp is the value in table biblio which is not equal
to the value of timestamp in table reserveconstraint. So getreservetitle returns
 empty hash. This causes error in moremember.pl

Suggestion:
In FindReserves in Reserve2.pm, replace:
  my $query="SELECT *,reserves.branchcode,biblio.title AS btitle
by:
  my $query="SELECT *,reserves.branchcode,biblio.title AS btitle,
reserves.timestamp as rtimestamp

In moremember.pl, in getreservetitle() near the end of file, replace:
  $reserveline->{'timestamp'}
by
  $reserveline->{'rtimestamp'}



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]