Bugzilla – Attachment 64930 Details for
Bug 17680
C4::Circulation - Replace GetItemIssue with Koha::Checkouts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17680: Fix conflict with bug 18651
Bug-17680-Fix-conflict-with-bug-18651.patch (text/plain), 1.00 KB, created by
Tomás Cohen Arazi (tcohen)
on 2017-07-07 19:46:49 UTC
(
hide
)
Description:
Bug 17680: Fix conflict with bug 18651
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2017-07-07 19:46:49 UTC
Size:
1.00 KB
patch
obsolete
>From 325e6947e3eb95a84a15a3e93e346b5a5cbd091f Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 5 Jul 2017 17:11:24 -0300 >Subject: [PATCH] Bug 17680: Fix conflict with bug 18651 > >$issue is now a Koha::Checkout, not a hashref > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > C4/Circulation.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 8ee7e6e..6303c86 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -1938,7 +1938,7 @@ sub AddReturn { > eval { > my $issue_id = MarkIssueReturned( $borrowernumber, $item->{'itemnumber'}, > $circControlBranch, $return_date, $borrower->{'privacy'} ); >- $issue->{issue_id} = $issue_id; >+ $issue->issue_id($issue_id); > }; > unless ( $@ ) { > if ( ( C4::Context->preference('CalculateFinesOnReturn') && $is_overdue ) || $return_date ) { >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17680
:
57787
|
57788
|
57789
|
57847
|
58431
|
58432
|
58433
|
58501
|
58918
|
58919
|
58920
|
61761
|
61762
|
61763
|
62034
|
62086
|
62102
|
62103
|
62104
|
64257
|
64258
|
64259
|
64284
|
64337
|
64805
|
64806
|
64807
|
64833
|
64866
|
64867
|
64868
|
64869
|
64870
|
64871
|
64925
|
64926
|
64927
|
64928
|
64929
| 64930 |
64931
|
65302
|
65310