Bugzilla – Attachment 11415 Details for
Bug 7241
circulation action logs record biblionumber instead of item number
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 7241: fix for the CIRC logs -> itemnumber stored correctly
SIGNED-OFF-Bug-7241-fix-for-the-CIRC-logs---itemnu.patch (text/plain), 1.24 KB, created by
Owen Leonard
on 2012-08-07 13:01:11 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 7241: fix for the CIRC logs -> itemnumber stored correctly
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2012-08-07 13:01:11 UTC
Size:
1.24 KB
patch
obsolete
>From 549fed61537422b2ccb1687dc172e4ff76ea0729 Mon Sep 17 00:00:00 2001 >From: Adrien Saurat <adrien.saurat@biblibre.com> >Date: Fri, 1 Jun 2012 11:08:28 +0200 >Subject: [PATCH] [SIGNED-OFF] Bug 7241: fix for the CIRC logs -> itemnumber > stored correctly >Content-Type: text/plain; charset="utf-8" > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > C4/Circulation.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 78915ed..3df29db 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -1129,7 +1129,7 @@ sub AddIssue { > } > } > >- logaction("CIRCULATION", "ISSUE", $borrower->{'borrowernumber'}, $biblio->{'biblionumber'}) >+ logaction("CIRCULATION", "ISSUE", $borrower->{'borrowernumber'}, $biblio->{'itemnumber'}) > if C4::Context->preference("IssueLog"); > } > return ($datedue); # not necessarily the same as when it came in! >@@ -1730,7 +1730,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.9.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 7241
:
7088
|
7471
|
9870
|
11415
|
12043
|
12434
|
14745
|
14945
|
16202
|
16627
|
16636
|
16637
|
16638
|
16661