From 3a5daeb9702fec467b222e099cf7f2cd08c291d6 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 26 Aug 2025 07:07:05 +0000 Subject: [PATCH] Bug 40702: Add missing "Title" header in Inventory csv export This patch adds a missing "Title" header in the Inventory csv export. Test plan: 0. Apply the patch and koha-plack --restart kohadev 1. Go to http://localhost:8081/cgi-bin/koha/tools/inventory.pl 2. Check the "Export to CSV file" checkbox and click "Submit" 3. In the export, note that the A1 cell now says "Title" --- tools/inventory.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/inventory.pl b/tools/inventory.pl index 8e735d40e4..3b70c61054 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -433,7 +433,7 @@ if ( defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on' ) my $columns = Koha::Database::Columns->columns; my @translated_keys; for my $key ( - qw / biblioitems.title biblio.author + qw / biblio.title biblio.author items.barcode items.itemnumber items.homebranch items.location items.ccode items.itemcallnumber items.notforloan -- 2.39.5