From 696bcc665fbbde613708d2fc719a31a18fca332b Mon Sep 17 00:00:00 2001 From: Andrew Fuerste Henry Date: Fri, 31 Oct 2025 18:01:51 +0000 Subject: [PATCH] Bug 41163: Do not decode branchcode in circ log To test: 1 - confirm circ logging is on 2 - check out an item at Centerville (CPL) 3 - go to the log viewer, find your checkout, confirm the Info column includes "CPL" 4 - switch your logged-in library to Fairfield (FFL) 5 - confirm the log viewer now shows "FFL" in the info column for your checkout 6 - use a report to view action_logs.info for your checkout, confirm the field contains "CPL" 7 - apply patch, restart_all 8 - repeat steps 3-5, confirm "info" column shows "CPL" regardless of logged-in branch Signed-off-by: Roman Dolny Signed-off-by: Lisette Scheer --- tools/viewlog.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/viewlog.pl b/tools/viewlog.pl index 770e4c47ace..2ea2feb3592 100755 --- a/tools/viewlog.pl +++ b/tools/viewlog.pl @@ -181,7 +181,6 @@ if ($do_it) { $decoded->{biblionumber} = $item->biblionumber; $decoded->{biblioitemnumber} = $item->biblionumber; $decoded->{barcode} = $item->barcode; - $decoded->{branchcode} = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef; } $result->{'json'} = $decoded; } else { -- 2.39.5