From: Chris Cormack Date: Wed, 17 Aug 2011 23:23:08 +0000 (+1200) Subject: Bug 5549 - Another typo fix X-Git-Tag: v3.08.00~239^2~15 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=9c1a43d91a25d1ff276e98003b1dfe1e14391829;p=koha_ffzg Bug 5549 - Another typo fix --- diff --git a/C4/Circulation.pm b/C4/Circulation.pm index a4c495d5c2..d5584c24ae 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -1738,7 +1738,7 @@ sub MarkIssueReturned { my $calendar = Koha::Calendar->new( branchcode => $dropbox_branch ); my $dropboxdate = $calendar->addDate( DateTime->now( time_zone => C4::Context->tz), -1 ); $query .= ' ? '; - push @bind, $dropboxdate->strftimei('%Y-%m-%d %H:%M'); + push @bind, $dropboxdate->strftime('%Y-%m-%d %H:%M'); } elsif ($returndate) { $query .= ' ? '; push @bind, $returndate;