Bug 5549 - Hourly Loans - Fixing a typo
[koha_gimpoz] / C4 / Circulation.pm
index 49bd7b2..a4c495d 100644 (file)
@@ -1735,7 +1735,7 @@ sub MarkIssueReturned {
     my $query = 'UPDATE issues SET returndate=';
     my @bind;
     if ($dropbox_branch) {
-        my $calendar = Koha->new( branchcode => $dropbox_branch );
+        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');