http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12669
--- Comment #3 from Rolando Isidoro <[email protected]> --- It looks like there is another code entry that needs correction: my $dt = dt_from_string( $text, 'iso' ); @ https://github.com/digibib/koha-work/blob/master/Koha/Template/Plugin/KohaDates.pm#L32 becomes: my $tz = DateTime::TimeZone->new(name => 'floating') unless $config->{with_hours}; my $dt = dt_from_string( $text, 'iso', $tz ); With these 2 fixes in place the "Serial collection" page is rendered correctly. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
