From 2473979f8872c244d7f833f19c2621099984c9fa 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 --- tools/viewlog.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/viewlog.pl b/tools/viewlog.pl index 73d35670c78..769b5753ec2 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