Bugzilla – Attachment 8755 Details for
Bug 7869
Correct bad link to item in patron modification log
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Correct bad link to item in patron modification log
0001-Correct-bad-link-to-item-in-patron-modification-log.patch (text/plain), 1.20 KB, created by
Koha Team University Lyon 3
on 2012-04-02 10:28:33 UTC
(
hide
)
Description:
Correct bad link to item in patron modification log
Filename:
MIME Type:
Creator:
Koha Team University Lyon 3
Created:
2012-04-02 10:28:33 UTC
Size:
1.20 KB
patch
obsolete
>From 984cadc932366c99aff0afa3ec271434b02bbd38 Mon Sep 17 00:00:00 2001 >From: Lyon3 Team <koha@univ-lyon3.fr> >Date: Mon, 2 Apr 2012 11:44:52 +0200 >Subject: [PATCH] Correct bad link to item in patron modification log > >The issue and return link aimed at the wrong record >--- > C4/Circulation.pm | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 6ba3a7e..7a3c057 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -1072,7 +1072,7 @@ sub AddIssue { > } > } > >- logaction("CIRCULATION", "ISSUE", $borrower->{'borrowernumber'}, $biblio->{'biblionumber'}) >+ logaction("CIRCULATION", "ISSUE", $borrower->{borrowernumber}, $item->{'itemnumber'}) > if C4::Context->preference("IssueLog"); > } > return ($datedue); # not necessarily the same as when it came in! >@@ -1657,7 +1657,7 @@ sub AddReturn { > }); > } > >- logaction("CIRCULATION", "RETURN", $borrowernumber, $item->{'biblionumber'}) >+ logaction("CIRCULATION", "RETURN", $borrowernumber, $item->{'itemnumber'}) > if C4::Context->preference("ReturnLog"); > > # FIXME: make this comment intelligible. >-- >1.7.2.5 >
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 7869
: 8755 |
8756