12 Jan
2010
12 Jan
'10
4:14 p.m.
http://bugs.koha.org/cgi-bin/bugzilla3/show_bug.cgi?id=4035 --- Comment #2 from Owen Leonard <oleonard@myacpl.org> 2010-01-12 15:14:44 --- On line 457 of circulation.pl the item's checkout date gets formatted: $it->{'issuedate'} = format_date($it->{'issuedate'}); But then on line 464: if ( $todaysdate eq $it->{'issuedate'} or $todaysdate eq $it->{'lastreneweddate'} ) { push @todaysissues, $it; } else { push @previousissues, $it; } The script is trying to compare the now-formatted $it->{'issuedate'} to an unformatted date. -- Configure bugmail: http://bugs.koha.org/cgi-bin/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.