From b21696ab9a8c2b8e2f2a78c0abca9f4d13e12b4c Mon Sep 17 00:00:00 2001 From: Blou Date: Tue, 25 Oct 2022 14:55:52 -0400 Subject: [PATCH] Bug 32110: Fixup to db_rev for non-english, multilingual Koha Without this patch, the update process duplicates all the news and content entries when they were non-english to start with. This patch keeps the same process, but new "default" "parent" entries are empty so there' no duplication in the OPAC display, while still being editable/deletable in the intranet. We came through that through many iterations. This was the least invasive while still providing satisfying results. --- installer/data/mysql/db_revs/210600016.pl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/installer/data/mysql/db_revs/210600016.pl b/installer/data/mysql/db_revs/210600016.pl index 8d66de86cbf..7c9b06700a0 100755 --- a/installer/data/mysql/db_revs/210600016.pl +++ b/installer/data/mysql/db_revs/210600016.pl @@ -111,8 +111,6 @@ return { # Now this is getting weird # We are adding an extra news with the same code when the lang is not "default" (/"en") - $new_lang = "default" if $new_lang eq 'en'; # Assume that "en" is "default" - my $sth_update = $dbh->prepare(q| UPDATE additional_contents SET category=?, location=?, lang=? @@ -124,7 +122,7 @@ return { $dbh->do(q| INSERT INTO additional_contents(category, code, location, branchcode, title, content, lang, published_on, updated_on, expirationdate, number, borrowernumber) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) - |, undef, $category, 'tmp_code', $location, $c->{branchcode}, $c->{title}, $c->{content}, 'default', $c->{published_on}, $c->{updated_on}, $c->{expirationdate}, $c->{number}, $c->{borrowernumber}); + |, undef, $category, 'tmp_code', $location, $c->{branchcode}, $c->{title}, '', 'default', $c->{published_on}, $c->{updated_on}, $c->{expirationdate}, $c->{number}, $c->{borrowernumber}); $parent_idnew = $dbh->last_insert_id(undef, undef, 'additional_contents', undef); } -- 2.34.1