From aabd71c187b34fdc133526d744383fbf1613952e Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 7 Jan 2025 12:18:36 +0000 Subject: [PATCH] Bug 17506: (follow-up) Check IssueLog syspref when logging offline checkout --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 0cf848b3520..52298497115 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -4301,7 +4301,7 @@ sub ProcessOfflineIssue { ); logaction("CIRCULATION", "ISSUE", $issue->{borrowernumber}, $itemnumber) - if C4::Context->preference("ReturnLog"); + if C4::Context->preference("IssueLog"); } AddIssue( $patron, -- 2.39.5