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