Skip to content

Commit

Permalink
Bug 3928: Modified date should follow syspref
Browse files Browse the repository at this point in the history
Changed arriveddate format to follow syspref
Fixed a whitespace error

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
  • Loading branch information
colinsc authored and gmcharlt committed May 11, 2010
1 parent f052866 commit 757e1c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions serials/serials-edit.pl
Expand Up @@ -122,7 +122,7 @@ =head1 Parameters
my @serialdatalist;
my %processedserialid;

my $today = C4::Dates->new();
my $today = C4::Dates->new();
foreach my $tmpserialid (@serialids) {

#filtering serialid for duplication
Expand All @@ -134,7 +134,7 @@ =head1 Parameters
my $data = GetSerialInformation($tmpserialid);
$data->{publisheddate} = format_date( $data->{publisheddate} );
$data->{planneddate} = format_date( $data->{planneddate} );
$data->{arriveddate}=$today->output('us');
$data->{arriveddate}=$today->output('syspref');
$data->{'editdisable'} = (
(
HasSubscriptionExpired( $data->{subscriptionid} )
Expand Down

0 comments on commit 757e1c9

Please sign in to comment.