[Koha-bugs] [Bug 17865] If a subscription has no history end date, it shows as expired today in OPAC

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Jan 9 11:31:13 CET 2017


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17865

--- Comment #2 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
Ok click on "More details" and arrived on /opac-serial-issues.pl

Since 3.00.00.106 we should not have 0000-00-00 anymore in
subscription.enddate, so 
 451         if ( $subs->{enddate} eq '0000-00-00' ) {
should be
 451         if ( not defined $subs->{enddate} ) {

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list