No subject


Thu Oct 22 12:13:51 CEST 2009


/usr/share/koha/intranet/cgi-bin/acqui/orderreceive.pl line 80. 

This happens when datareceived parameter does not exist or is empty. In that
case the second parameter iso from the line below becomes the first parameter.
my $datereceived = C4::Dates->new($input->param('datereceived'),'iso') ||
C4::Dates->new();

Solution: force the first parameter to be present in the call: 
my $datereceived = C4::Dates->new($input->param('datereceived')||'','iso') ||
C4::Dates->new();


-- 
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.


More information about the Koha-bugs mailing list